:root {
  --bg: #15191e;
  --surface: rgba(20, 28, 38, 0.68);
  --surface-strong: rgba(24, 33, 44, 0.84);
  --text: #eef1f4;
  --muted: rgba(223, 229, 236, 0.72);
  --accent: #c8a377;
  --accent-dark: #f0cf9f;
  --line: rgba(229, 235, 242, 0.12);
  --shadow: 0 24px 60px rgba(3, 7, 14, 0.38);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 34%),
    linear-gradient(225deg, rgba(142, 150, 158, 0.09), transparent 44%),
    linear-gradient(180deg, #22272d 0%, #1a1f25 46%, #11151a 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

body.home-page {
  background: #11161c;
}

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

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

.site-shell {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.home-page .site-shell {
  width: min(100% - 3rem, 1320px);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
}

.admin-page .site-shell {
  width: min(100% - 1.5rem, 1520px);
}

.home-scene {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.home-scene-video-wrap {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 34%),
    linear-gradient(225deg, rgba(142, 150, 158, 0.09), transparent 44%),
    linear-gradient(180deg, #22272d 0%, #1a1f25 46%, #11151a 100%);
  background-position: center;
  background-size: cover;
}

.home-scene-video-fallback {
  position: absolute;
  inset: 0;
  background: inherit;
  transform: scale(1.01);
}

.home-scene-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 360ms ease;
  z-index: 1;
}

.home-scene-video.is-active.is-ready {
  opacity: 1;
}

.home-scene-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(rgba(18, 23, 29, 0.27), rgba(18, 23, 29, 0.54)),
    radial-gradient(circle at top left, rgba(213, 151, 92, 0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(96, 122, 145, 0.1), transparent 30%);
  pointer-events: none;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.75rem;
  padding: 1.4rem 0;
}

.home-page .topbar {
  position: relative;
  z-index: 2;
  padding-top: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  color: #fff7ee;
}

.brand-mark {
  width: 58px;
  height: 58px;
  color: #fff;
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  gap: 0.18rem;
}

.brand-text strong {
  font-size: 1.02rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-text small {
  color: rgba(244, 233, 219, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.54rem;
}

.home-page .brand,
.home-page .nav a,
.home-page .portal-float-link,
.home-page p,
.home-page .footer,
.home-page .eyebrow {
  color: #f3ece3;
}

.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.6rem;
  flex: 1 1 auto;
  min-width: 0;
}

.nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1.35rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  min-width: 0;
  white-space: nowrap;
}

.nav a {
  color: rgba(238, 241, 244, 0.74);
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 1.6rem;
  padding: 0.1rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  white-space: nowrap;
  line-height: 1;
  flex: 0 0 auto;
  transition: color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: #ffffff;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.22rem;
  height: 1px;
  background: rgba(223, 229, 236, 0.2);
  transform: scaleX(0.55);
  transform-origin: left center;
  opacity: 0.92;
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
  background: rgba(240, 207, 159, 0.52);
}

.portal-float-link {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1rem 0.7rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 207, 159, 0.34);
  background:
    linear-gradient(180deg, rgba(240, 207, 159, 0.2), rgba(198, 148, 92, 0.14)),
    rgba(20, 26, 34, 0.78);
  box-shadow: 0 18px 38px rgba(3, 7, 14, 0.22);
  color: #fff8ee;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.portal-float-link::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.7rem;
  border-radius: 999px;
  background: #f0cf9f;
  box-shadow: 0 0 0 0.3rem rgba(240, 207, 159, 0.13);
}

.portal-float-link:hover,
.portal-float-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(240, 207, 159, 0.54);
  background:
    linear-gradient(180deg, rgba(240, 207, 159, 0.28), rgba(198, 148, 92, 0.18)),
    rgba(20, 26, 34, 0.88);
  box-shadow: 0 22px 44px rgba(3, 7, 14, 0.28);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: end;
  padding: 2rem 0 4rem;
}

.hero-copy,
.panel,
.info-card,
.price-card,
.gallery-card,
.form-card {
  background: linear-gradient(180deg, rgba(18, 25, 34, 0.82), rgba(12, 18, 25, 0.78));
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.ghost {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  color: #fffaf5;
  border: 1px solid rgba(255, 250, 245, 0.08);
}

.hero-copy {
  padding: 3rem;
  border-radius: 28px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-dark);
  font-size: 0.74rem;
  font-weight: 600;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.96rem;
}

.home-page p {
  color: rgba(243, 236, 227, 0.86);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  padding: 0.95rem 1.4rem;
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button.primary,
button {
  background: linear-gradient(180deg, rgba(230, 194, 143, 0.96), rgba(207, 159, 103, 0.92));
  color: #1c1a18;
}

.button.secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  color: #fff7ee;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.button:hover,
button:hover {
  transform: translateY(-1px);
}

.hero-visual {
  min-height: 620px;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(31, 23, 18, 0.12), rgba(24, 20, 18, 0.54)),
    url("/static/images/backgrounds/parker-luxury-home-twilight.jpg")
      center/cover;
}

.hero-visual::after {
  content: "Parker-inspired twilight presentation";
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  padding: 0.8rem 1rem;
  color: #fffaf5;
  background: rgba(30, 18, 10, 0.44);
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.section {
  padding: 1.5rem 0 4rem;
}

.page-wrap {
  display: grid;
  gap: 1.75rem;
}

.page-intro {
  max-width: 860px;
  padding: 2rem 0 0.5rem;
}

.page-intro-compact {
  max-width: 980px;
}

.page-intro h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.98;
}

.page-intro p {
  font-size: 1.08rem;
  max-width: 640px;
}

.pricing-relationship-note {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: minmax(150px, 0.68fr) minmax(0, 3fr);
  gap: 1.25rem;
  align-items: center;
  padding: 1.15rem 1.35rem;
  border: 1px solid rgba(240, 207, 159, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 14% 24%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(90deg, rgba(240, 207, 159, 0.18), rgba(240, 207, 159, 0.08) 42%, rgba(240, 207, 159, 0) 100%);
  color: rgba(255, 248, 238, 0.9);
  overflow: hidden;
}

.payment-timing-note {
  margin-top: 0.85rem;
  border-color: rgba(125, 215, 153, 0.18);
  background:
    radial-gradient(circle at 14% 24%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(90deg, rgba(125, 215, 153, 0.16), rgba(125, 215, 153, 0.07) 42%, rgba(125, 215, 153, 0) 100%);
}

.payment-timing-note .pricing-relationship-symbol {
  color: rgba(166, 230, 181, 0.9);
}

.pricing-relationship-note p {
  margin: 0;
  max-width: none;
}

.pricing-relationship-mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
  min-height: 100%;
  padding: 0.85rem 0.7rem 0.85rem 0.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-relationship-mark::after {
  content: none;
}

.pricing-relationship-label {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  line-height: 0.88;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.pricing-relationship-symbol {
  color: rgba(255, 255, 255, 0.96);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(4.8rem, 7vw, 6.6rem);
  font-weight: 600;
  line-height: 0.8;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.guarantee-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 14%, rgba(240, 207, 159, 0.18), transparent 34%),
    radial-gradient(circle at 86% 10%, rgba(77, 110, 96, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.guarantee-hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -42% 28%;
  height: 66%;
  background:
    linear-gradient(135deg, transparent 48%, rgba(240, 207, 159, 0.1) 49%, transparent 50%),
    linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.05) 49%, transparent 50%);
  background-size: 44px 44px;
  opacity: 0.65;
  pointer-events: none;
}

.guarantee-copy,
.founder-card {
  position: relative;
  z-index: 1;
}

.guarantee-copy h1 {
  max-width: 820px;
  margin: 0.5rem 0 1rem;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.88;
}

.guarantee-copy p {
  max-width: 680px;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: rgba(238, 242, 246, 0.82);
}

.guarantee-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.founder-card {
  display: grid;
  gap: 1rem;
  justify-items: center;
  padding: 1rem;
  border: 1px solid rgba(240, 207, 159, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(10, 14, 20, 0.42);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.founder-orbit {
  position: absolute;
  top: -34px;
  right: -28px;
  width: 150px;
  color: rgba(240, 207, 159, 0.22);
}

.founder-orbit svg,
.promise-banner svg,
.guarantee-icon svg {
  display: block;
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.founder-orbit svg {
  stroke-width: 4;
}

.founder-photo-wrap {
  position: relative;
  width: min(100%, 370px);
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(78, 107, 85, 0.9), rgba(13, 18, 26, 0.95)),
    rgba(255, 255, 255, 0.04);
}

.founder-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 13, 19, 0.12), rgba(9, 13, 19, 0.48)),
    radial-gradient(circle at 50% 32%, transparent 26%, rgba(9, 13, 19, 0.42) 100%),
    linear-gradient(90deg, rgba(240, 207, 159, 0.08), transparent 34%, rgba(9, 13, 19, 0.2));
  box-shadow: inset 0 0 0 1px rgba(255, 250, 245, 0.08), inset 0 -60px 90px rgba(5, 8, 12, 0.5);
  pointer-events: none;
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-photo-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.founder-photo-fallback span {
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff8ee;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
}

.founder-photo[hidden],
.founder-photo-fallback[hidden] {
  display: none;
}

.founder-meta {
  display: grid;
  gap: 0.2rem;
  width: 100%;
  padding: 0.1rem 0.4rem 0.4rem;
}

.founder-meta strong {
  font-size: 1.15rem;
  color: #fff8ee;
}

.founder-meta span {
  color: rgba(238, 242, 246, 0.7);
}

.promise-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.2rem;
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(240, 207, 159, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(240, 207, 159, 0.14), transparent 46%),
    rgba(255, 255, 255, 0.045);
}

.promise-banner svg {
  width: 76px;
  color: #f0cf9f;
  stroke-width: 4;
}

.promise-banner h2,
.founder-promise h2 {
  margin: 0.35rem 0 0.7rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
}

.promise-banner p,
.founder-promise p,
.guarantee-panel p,
.guarantee-flow p {
  color: rgba(238, 242, 246, 0.76);
}

.about-page {
  gap: 1.35rem;
}

.about-lead {
  align-items: stretch;
}

.about-callout {
  display: grid;
  align-content: start;
}

.about-callout .button {
  justify-self: start;
  margin-top: 0.4rem;
}

.about-grid .info-card p {
  margin-bottom: 0;
}

.about-equipment {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  column-gap: clamp(1.4rem, 3vw, 2.6rem);
  margin-top: 0;
}

.about-equipment > div:first-child {
  grid-column: 1 / 4;
}

.about-equipment-content {
  grid-column: 4 / -1;
  justify-self: stretch;
  display: grid;
  gap: 1.2rem;
  width: 100%;
  min-width: 0;
}

.about-equipment-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 4vw, 3.2rem);
}

.about-equipment-copy p {
  margin: 0;
  max-width: none;
  font-size: clamp(0.98rem, 1vw, 1.08rem);
}

.about-camera-showcase {
  display: flex;
  gap: 0.75rem;
  min-width: 0;
  padding: 0.65rem;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 250, 245, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 44%),
    linear-gradient(180deg, rgba(7, 10, 14, 0.38), rgba(7, 10, 14, 0.22));
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.16);
}

.about-camera-tile {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: 210px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(5, 8, 12, 0.64);
}

.about-camera-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 13, 19, 0.12), rgba(9, 13, 19, 0.48)),
    radial-gradient(circle at 50% 32%, transparent 26%, rgba(9, 13, 19, 0.42) 100%),
    linear-gradient(90deg, rgba(240, 207, 159, 0.08), transparent 34%, rgba(9, 13, 19, 0.2));
  box-shadow: inset 0 0 0 1px rgba(255, 250, 245, 0.08), inset 0 -60px 90px rgba(5, 8, 12, 0.5);
  pointer-events: none;
}

.about-camera-tile img,
.about-camera-tile video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.about-promise {
  margin-top: 0.25rem;
}

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

.guarantee-panel {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 310px;
  padding: clamp(1.2rem, 2.4vw, 1.7rem);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.022)),
    rgba(12, 17, 24, 0.42);
}

.guarantee-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: rgba(240, 207, 159, 0.08);
  color: #f0cf9f;
}

.guarantee-icon svg {
  width: 44px;
  stroke-width: 4;
}

.guarantee-panel h2 {
  margin: 0;
  font-size: 1.35rem;
}

.guarantee-panel p {
  margin: 0;
}

.founder-promise {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-left: 1px solid rgba(240, 207, 159, 0.36);
  border-radius: 0 28px 28px 0;
  background:
    linear-gradient(90deg, rgba(240, 207, 159, 0.1), transparent 36%),
    rgba(255, 255, 255, 0.025);
}

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

.guarantee-flow article {
  padding: 1rem 1.1rem;
  border-top: 1px solid rgba(240, 207, 159, 0.24);
}

.guarantee-flow span {
  display: block;
  margin-bottom: 0.6rem;
  color: #f0cf9f;
  letter-spacing: 0.18em;
}

.guarantee-flow strong {
  display: block;
  margin-bottom: 0.4rem;
  color: #fff8ee;
}

.guarantee-flow p {
  margin: 0;
}

.admin-console .admin-console-intro h1 {
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-transform: none;
  color: rgba(255, 250, 245, 0.94);
}

.admin-console .admin-console-intro p {
  font-size: 0.88rem;
  color: rgba(223, 229, 236, 0.72);
}

.admin-console {
  --admin-sidebar-width: 258px;
  display: grid;
  grid-template-columns: var(--admin-sidebar-width) minmax(0, 1fr);
  align-items: start;
  column-gap: 1.25rem;
  transition: grid-template-columns 180ms ease;
}

.admin-console.is-sidebar-collapsed {
  --admin-sidebar-width: 76px;
}

.admin-console > :not(.admin-sidebar) {
  grid-column: 2;
  min-width: 0;
}

.admin-console .page-intro {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  max-width: none;
  padding: 0.65rem 0 0;
}

.admin-console .page-intro p {
  margin: 0;
}

.admin-console .page-intro p::before {
  content: "/";
  margin-right: 0.75rem;
  color: rgba(240, 207, 159, 0.42);
}

.admin-console .eyebrow {
  color: rgba(240, 207, 159, 0.72);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.admin-sidebar {
  grid-column: 1;
  grid-row: 1 / span 80;
  position: sticky;
  top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: calc(100vh - 2rem);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(13, 18, 25, 0.78);
  box-shadow: 0 22px 54px rgba(2, 7, 13, 0.26);
  backdrop-filter: blur(18px);
  scrollbar-width: thin;
}

.admin-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.admin-sidebar-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 0.65rem;
}

.admin-sidebar-mark,
.admin-nav-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

.admin-sidebar-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(240, 207, 159, 0.22);
  background: linear-gradient(180deg, rgba(240, 207, 159, 0.14), rgba(255, 255, 255, 0.035));
  color: var(--accent-dark);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.admin-sidebar-title {
  color: rgba(255, 250, 245, 0.92);
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.admin-sidebar-toggle {
  width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 248, 238, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.admin-sidebar-toggle span {
  display: block;
  font-size: 1.25rem;
  line-height: 1;
  transform: translateX(-1px);
  transition: transform 180ms ease;
}

.admin-subnav {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.admin-subnav a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-start;
  gap: 0.72rem;
  min-height: 46px;
  padding: 0.7rem 0.85rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  color: rgba(238, 242, 246, 0.82);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.admin-nav-icon {
  width: 22px;
  height: 22px;
  color: rgba(240, 207, 159, 0.76);
  font-size: 0.92rem;
}

.admin-nav-icon-image img {
  width: 17px;
  height: 17px;
  object-fit: contain;
  opacity: 0.92;
}

.admin-nav-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-subnav a:hover,
.admin-subnav a.is-active {
  border-color: rgba(240, 207, 159, 0.26);
  background: linear-gradient(180deg, rgba(240, 207, 159, 0.12), rgba(255, 255, 255, 0.02));
  color: #fff8ee;
}

.admin-subnav .admin-subnav-signout {
  margin-top: auto;
  border-color: rgba(255, 145, 145, 0.14);
  color: rgba(255, 220, 220, 0.84);
}

.admin-subnav .admin-subnav-signout:hover,
.admin-subnav .admin-subnav-signout:focus-visible {
  border-color: rgba(255, 145, 145, 0.28);
  background: linear-gradient(180deg, rgba(118, 45, 45, 0.2), rgba(255, 255, 255, 0.02));
  color: #fff3f3;
}

.admin-console.is-sidebar-collapsed .admin-sidebar {
  padding-inline: 0.7rem;
}

.admin-console.is-sidebar-collapsed .admin-sidebar-head {
  justify-content: center;
}

.admin-console.is-sidebar-collapsed .admin-sidebar-title,
.admin-console.is-sidebar-collapsed .admin-nav-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.admin-console.is-sidebar-collapsed .admin-sidebar-brand {
  display: none;
}

.admin-console.is-sidebar-collapsed .admin-sidebar-toggle span {
  transform: rotate(180deg) translateX(-1px);
}

.admin-console.is-sidebar-collapsed .admin-subnav a {
  justify-content: center;
  padding-inline: 0.5rem;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
  gap: 1.25rem;
}

.admin-main-panel {
  min-width: 0;
}

.admin-side-stack {
  display: grid;
  gap: 1.25rem;
  align-content: start;
}

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

.calendar-controls-panel {
  border-radius: 12px;
}

.calendar-controls-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px auto;
  gap: 1rem;
  align-items: end;
}

.calendar-controls-form button {
  min-height: 54px;
}

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

.admin-panel-head h2 {
  margin: 0.12rem 0 0;
}

.admin-console .admin-panel-head {
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.admin-console .admin-panel-head h2,
.admin-console .panel h2,
.admin-console .form-card h2 {
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(1.08rem, 1.5vw, 1.36rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  text-transform: none;
  color: rgba(255, 250, 245, 0.94);
}

.admin-console .admin-panel-head p {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.admin-console .selector-heading {
  display: inline-flex;
  width: fit-content;
  margin-bottom: -0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(240, 207, 159, 0.08);
  color: rgba(240, 207, 159, 0.86);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.admin-search {
  min-width: min(360px, 100%);
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}

.admin-table th,
.admin-table td {
  padding: 0.95rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: rgba(244, 233, 219, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.admin-table td {
  color: rgba(247, 240, 231, 0.9);
}

.admin-table td strong,
.admin-table td small {
  display: block;
}

.admin-table td small,
.admin-table .muted {
  margin-top: 0.22rem;
  color: var(--muted);
  line-height: 1.5;
}

.admin-inline-input {
  min-width: 150px;
  border-radius: 8px;
  padding: 0.55rem 0.65rem;
  font-size: 0.86rem;
}

.admin-inline-input-stacked {
  margin-top: 0.45rem;
}

.admin-inline-textarea {
  min-width: 190px;
  min-height: 74px;
  border-radius: 8px;
  padding: 0.55rem 0.65rem;
  font-size: 0.86rem;
}

.discount-input {
  display: grid;
  grid-template-columns: minmax(72px, 1fr) auto;
  align-items: center;
  gap: 0.35rem;
}

.discount-input span {
  color: var(--muted);
}

.admin-check {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(247, 240, 231, 0.86);
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: none;
}

.admin-check input {
  width: auto;
}

.admin-table-button {
  min-height: 38px;
  padding: 0.55rem 0.8rem;
  white-space: nowrap;
}

.admin-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.025);
}

.admin-table-empty {
  margin: 1rem 0 0;
}

.openclaw-console {
  --openclaw-mark: url("/static/images/branding/openclaw-mark.svg");
  align-items: stretch;
  row-gap: 0;
}

.openclaw-main-column {
  grid-column: 2;
  display: grid;
  gap: 1.25rem;
  min-width: 0;
  min-height: 0;
}

.openclaw-hero-panel {
  position: relative;
  display: grid;
  gap: 1rem;
  align-self: start;
  overflow: hidden;
  z-index: 2;
}

.openclaw-hero-mark {
  position: absolute;
  right: clamp(1rem, 4vw, 3.5rem);
  bottom: -3rem;
  width: min(36vw, 360px);
  aspect-ratio: 1;
  background: var(--openclaw-mark) center / contain no-repeat;
  opacity: 0.045;
  pointer-events: none;
}

.openclaw-panel-head,
.openclaw-prompt-form {
  position: relative;
  z-index: 1;
}

.openclaw-mfa-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.48rem 0.75rem;
  border: 1px solid rgba(125, 215, 153, 0.18);
  border-radius: 999px;
  background: rgba(125, 215, 153, 0.08);
  color: rgba(151, 232, 177, 0.92);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.openclaw-prompt-form {
  display: grid;
  gap: 0.85rem;
}

.openclaw-prompt-help {
  max-width: 880px;
  margin: -0.2rem 0 0;
  color: rgba(223, 229, 236, 0.78);
  font-size: 0.9rem;
  line-height: 1.55;
}

.openclaw-prompt-form textarea {
  min-height: 180px;
  resize: vertical;
}

.openclaw-prompt-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem 1rem;
}

.openclaw-prompt-actions small {
  min-width: 0;
  color: var(--muted);
  line-height: 1.45;
}

.openclaw-prompt-actions button {
  justify-self: end;
  white-space: nowrap;
}

.openclaw-prompt-actions small[data-state="ok"],
.openclaw-live-status[data-state="ok"] {
  color: rgba(151, 232, 177, 0.92);
}

.openclaw-prompt-actions small[data-state="loading"],
.openclaw-live-status[data-state="loading"] {
  color: rgba(240, 207, 159, 0.9);
}

.openclaw-prompt-actions small[data-state="error"],
.openclaw-live-status[data-state="error"] {
  color: rgba(255, 145, 145, 0.94);
}

.openclaw-live-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.4rem 0.62rem;
  border: 1px solid rgba(125, 215, 153, 0.14);
  border-radius: 999px;
  background: rgba(125, 215, 153, 0.07);
  color: rgba(151, 232, 177, 0.92);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.openclaw-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem;
}

.openclaw-thread-panel {
  display: grid;
  gap: 1.25rem;
  position: relative;
  align-self: start;
  min-height: 0;
  z-index: 1;
}

.openclaw-thread-panel > .panel {
  display: grid;
  grid-template-rows: auto minmax(0, auto);
  min-height: 0;
  overflow: visible;
}

.openclaw-scroll-window {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  max-height: min(620px, 70vh);
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 0.35rem;
  scrollbar-width: thin;
}

.openclaw-history-card,
.openclaw-schema-card,
.openclaw-empty-state {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(9, 13, 19, 0.36);
}

.openclaw-response-thread {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(240, 207, 159, 0.18);
}

.openclaw-response-card {
  padding: 0.95rem;
  border: 1px solid rgba(125, 215, 153, 0.11);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(125, 215, 153, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(8, 12, 18, 0.44);
}

.openclaw-response-pending {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  margin-top: 0.95rem;
  padding: 0.5rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(223, 229, 236, 0.58);
  font-size: 0.78rem;
}

.openclaw-response-pending span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: rgba(240, 207, 159, 0.68);
}

.openclaw-card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.openclaw-card-head strong,
.openclaw-schema-card strong,
.openclaw-empty-state strong {
  color: rgba(255, 250, 245, 0.96);
}

.openclaw-card-head small {
  display: block;
  margin-top: 0.25rem;
  color: rgba(223, 229, 236, 0.54);
  font-size: 0.74rem;
  overflow-wrap: anywhere;
}

.openclaw-history-card p,
.openclaw-response-card p,
.openclaw-schema-card p,
.openclaw-empty-state p {
  color: rgba(223, 229, 236, 0.78);
  line-height: 1.55;
  white-space: pre-wrap;
}

.openclaw-change-history {
  margin-top: 0.75rem;
  padding: 0.85rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
  color: rgba(238, 242, 246, 0.82);
  font-size: 0.9rem;
  line-height: 1.55;
  white-space: pre-wrap;
}

.openclaw-agent-writeup {
  margin-top: 0.85rem;
  color: rgba(238, 242, 246, 0.86);
  font-size: 0.94rem;
  line-height: 1.68;
  white-space: pre-wrap;
}

.openclaw-pr-link {
  display: grid;
  gap: 0.22rem;
  margin-top: 0.85rem;
  padding: 0.88rem 1rem;
  border: 1px solid rgba(125, 215, 153, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(125, 215, 153, 0.12), rgba(255, 255, 255, 0.018)),
    rgba(9, 13, 19, 0.44);
  color: rgba(237, 255, 243, 0.92);
  text-decoration: none;
}

.openclaw-pr-link span {
  color: rgba(151, 232, 177, 0.86);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.openclaw-pr-link strong {
  overflow-wrap: anywhere;
}

.openclaw-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.85rem;
  color: rgba(223, 229, 236, 0.58);
  font-size: 0.76rem;
}

.openclaw-card-meta span,
.openclaw-card-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

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

.openclaw-schema-card ul {
  display: grid;
  gap: 0.42rem;
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}

.openclaw-schema-card code,
.openclaw-prompt-actions code {
  color: rgba(255, 250, 245, 0.88);
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

@media (min-width: 1081px) {
  body.openclaw-admin-page {
    overflow: hidden;
  }

  .openclaw-admin-page .site-shell {
    display: flex;
    flex-direction: column;
    height: 100vh;
    min-height: 0;
  }

  .openclaw-admin-page .topbar {
    flex: 0 0 auto;
  }

  .openclaw-admin-page .flash-stack {
    flex: 0 0 auto;
  }

  .openclaw-admin-page .footer {
    display: none;
  }

  .openclaw-admin-page .openclaw-console {
    flex: 1 1 auto;
    grid-template-rows: minmax(0, 1fr);
    min-height: 0;
    overflow: hidden;
    padding: 0.75rem 0 1rem;
  }

  .openclaw-admin-page .openclaw-main-column {
    grid-template-rows: auto minmax(170px, 210px) minmax(0, 2fr);
    gap: 0.85rem;
    height: 100%;
    min-height: 0;
    overflow: hidden;
  }

  .openclaw-admin-page .openclaw-hero-panel {
    align-self: stretch;
    grid-template-rows: auto minmax(0, 1fr);
    min-height: 0;
    padding: 0.95rem 1.1rem;
  }

  .openclaw-admin-page .openclaw-prompt-form {
    grid-template-columns: minmax(0, 1fr) minmax(190px, 260px);
    grid-template-rows: minmax(0, 1fr);
    align-items: end;
    gap: 0.8rem;
    min-height: 0;
  }

  .openclaw-admin-page .openclaw-prompt-form textarea {
    height: 100%;
    min-height: 72px;
    resize: none;
  }

  .openclaw-admin-page .openclaw-prompt-actions {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(54px, 1fr);
    align-items: center;
    height: 100%;
  }

  .openclaw-admin-page .openclaw-prompt-actions button {
    width: 100%;
    height: 100%;
    min-height: 54px;
  }

  .openclaw-admin-page .openclaw-console .admin-sidebar {
    height: 100%;
    min-height: 0;
    max-height: 100%;
  }

  .openclaw-admin-page .openclaw-thread-panel,
  .openclaw-admin-page .openclaw-thread-panel > .panel {
    height: 100%;
    min-height: 0;
    overflow: hidden;
  }

  .openclaw-admin-page .openclaw-scroll-window {
    height: 100%;
    max-height: none;
    overflow-y: auto;
  }
}

.admin-gallery-directory {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.admin-new-gallery-card {
  border-color: rgba(240, 207, 159, 0.28);
  background:
    radial-gradient(circle at 8% 16%, rgba(240, 207, 159, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(240, 207, 159, 0.13), rgba(255, 255, 255, 0.026) 56%, rgba(255, 255, 255, 0.014));
}

.admin-new-gallery-card[open] {
  border-color: rgba(240, 207, 159, 0.42);
  background:
    radial-gradient(circle at 8% 16%, rgba(240, 207, 159, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(240, 207, 159, 0.16), rgba(255, 255, 255, 0.03) 58%, rgba(255, 255, 255, 0.016));
}

.admin-new-gallery-card .admin-order-summary {
  color: #fff8ee;
}

.admin-new-gallery-card .admin-order-summary p {
  color: rgba(240, 207, 159, 0.78);
}

.admin-new-gallery-status {
  color: #201914;
  border-color: rgba(240, 207, 159, 0.55);
  background: linear-gradient(180deg, rgba(240, 207, 159, 0.98), rgba(207, 159, 103, 0.92));
}

.admin-gallery-card {
  display: grid;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.022));
  overflow: hidden;
}

.admin-gallery-card[open] {
  border-color: rgba(240, 207, 159, 0.18);
  background: linear-gradient(180deg, rgba(240, 207, 159, 0.065), rgba(255, 255, 255, 0.022));
}

.admin-gallery-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 18px;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  cursor: pointer;
  list-style: none;
}

.admin-gallery-card-head::-webkit-details-marker {
  display: none;
}

.admin-gallery-card-head::after {
  content: "";
  width: 0.58rem;
  height: 0.58rem;
  justify-self: end;
  margin: 0.48rem 0 0;
  border-right: 2px solid rgba(255, 248, 238, 0.72);
  border-bottom: 2px solid rgba(255, 248, 238, 0.72);
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.admin-gallery-card[open] .admin-gallery-card-head::after {
  transform: rotate(225deg);
}

.admin-gallery-card-head p,
.admin-gallery-card-head small {
  margin: 0.25rem 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.admin-access-list {
  display: grid;
  gap: 0.9rem;
}

.admin-access-card {
  display: grid;
  gap: 0.95rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.022));
}

.admin-access-summary,
.admin-access-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.admin-access-summary p,
.admin-access-summary small {
  margin: 0.22rem 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.admin-access-actions {
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.admin-access-actions .checkbox-row {
  margin: 0;
}

.admin-gallery-quick-form {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) minmax(180px, 0.8fr) auto auto;
  gap: 0.85rem;
  align-items: end;
  padding: 0 1rem 1rem;
}

.customer-directory {
  display: grid;
  gap: 0.9rem;
}

.customer-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.022));
  overflow: hidden;
}

.customer-card[open] {
  border-color: rgba(240, 207, 159, 0.2);
  background: linear-gradient(180deg, rgba(240, 207, 159, 0.07), rgba(255, 255, 255, 0.02));
}

.customer-summary {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.2rem;
  cursor: pointer;
  list-style: none;
}

.customer-summary::-webkit-details-marker {
  display: none;
}

.customer-summary::after {
  content: "Expand";
  justify-self: end;
  min-width: 78px;
  color: rgba(240, 207, 159, 0.86);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.customer-card[open] .customer-summary::after {
  content: "Collapse";
}

.customer-summary-main {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
}

.customer-name {
  color: rgba(255, 248, 238, 0.96);
  font-size: 1.05rem;
  font-weight: 700;
}

.customer-meta {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.customer-summary-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.customer-summary-stats span {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.45rem 0.65rem;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 0.78rem;
  white-space: nowrap;
}

.customer-summary-stats strong {
  color: rgba(255, 248, 238, 0.96);
}

.customer-detail-form {
  display: grid;
  gap: 1.1rem;
  padding: 0 1.2rem 1.2rem;
}

.customer-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.customer-detail-grid small {
  color: var(--muted);
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
}

.customer-detail-grid textarea {
  min-height: 110px;
}

.customer-detail-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
}

.customer-activity {
  display: grid;
  gap: 0.2rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.customer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  justify-content: flex-end;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: rgba(238, 242, 246, 0.74);
  font-size: 0.82rem;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.legend-dot {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
}

.legend-dot-open {
  background: rgba(255, 255, 255, 0.28);
}

.legend-dot-booked {
  background: rgba(151, 196, 223, 0.72);
}

.legend-dot-twilight {
  background: rgba(231, 197, 88, 0.82);
}

.admin-gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.admin-gallery-head h2 {
  margin-bottom: 0.35rem;
}

.admin-gallery-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 1.25rem;
}

.gallery-link-box {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
  padding: 0.85rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.gallery-link-box span {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-link-box code {
  overflow-wrap: anywhere;
}

.site-background-preview {
  min-height: 320px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 999px rgba(8, 12, 18, 0.14);
}

.site-background-preview-video {
  display: block;
  width: 100%;
  max-height: 420px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 8, 12, 0.8);
  box-shadow: var(--shadow);
}

.site-portrait-preview,
.site-portrait-placeholder {
  width: min(100%, 360px);
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.site-portrait-preview {
  display: block;
  object-fit: cover;
  object-position: center top;
}

.site-portrait-placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(78, 107, 85, 0.9), rgba(13, 18, 26, 0.95)),
    rgba(255, 255, 255, 0.04);
}

.site-portrait-placeholder span {
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff8ee;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
}

.site-showcase-form {
  margin-top: 1.15rem;
}

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

.site-media-preview,
.site-media-placeholder {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 8, 12, 0.72);
  box-shadow: var(--shadow);
}

.site-media-preview img,
.site-media-preview video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.site-media-placeholder {
  display: grid;
  place-items: center;
  color: var(--muted);
}

.site-settings-reset {
  margin-top: 1rem;
}

.upload-dropzone {
  display: grid;
  gap: 1rem;
}

.upload-dropzone input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.upload-target {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 1.5rem;
  border: 1px dashed rgba(240, 207, 159, 0.32);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(240, 207, 159, 0.08), rgba(255, 255, 255, 0.025));
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}

.upload-target.is-dragover,
.upload-target.has-files {
  border-color: rgba(240, 207, 159, 0.58);
  background: linear-gradient(180deg, rgba(240, 207, 159, 0.14), rgba(255, 255, 255, 0.035));
}

.upload-target strong {
  color: #fff8ee;
  font-size: 1rem;
}

.upload-target span {
  max-width: 28rem;
  color: var(--muted);
  line-height: 1.6;
}

.upload-picker-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.upload-picker-actions .button {
  flex: 1 1 180px;
}

.upload-status {
  display: grid;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(240, 207, 159, 0.16);
  background: rgba(255, 255, 255, 0.035);
}

.upload-status-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 248, 238, 0.95);
}

.upload-status-head span {
  color: var(--muted);
}

.upload-status progress {
  width: 100%;
  height: 0.7rem;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.upload-status progress::-webkit-progress-bar {
  background: rgba(255, 255, 255, 0.08);
}

.upload-status progress::-webkit-progress-value {
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(240, 207, 159, 0.95), rgba(196, 143, 84, 0.95));
}

.upload-status progress::-moz-progress-bar {
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(240, 207, 159, 0.95), rgba(196, 143, 84, 0.95));
}

.admin-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  align-items: start;
}

.admin-gallery-item {
  display: grid;
  grid-template-columns: auto 132px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  cursor: grab;
  transform: translateZ(0);
  transition: border-color 160ms ease, box-shadow 160ms ease, opacity 160ms ease, transform 160ms ease;
  user-select: none;
  will-change: transform;
}

.admin-gallery-drag-handle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  min-width: 54px;
  border-radius: 12px;
  background: rgba(240, 207, 159, 0.08);
  color: rgba(240, 207, 159, 0.82);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: grab;
}

.admin-gallery-item:hover {
  border-color: rgba(240, 207, 159, 0.2);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.admin-gallery-item.is-dragging {
  border-color: rgba(240, 207, 159, 0.44);
  opacity: 0.3;
  transform: scale(0.985);
}

.admin-gallery-drag-preview {
  position: fixed;
  left: -9999px;
  top: -9999px;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.96;
  transform: scale(1.015);
  border-color: rgba(240, 207, 159, 0.56);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.gallery-order-form {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.gallery-order-status {
  min-width: 9.5rem;
  color: rgba(223, 229, 236, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.gallery-order-status[data-state="saving"] {
  color: rgba(240, 207, 159, 0.9);
}

.gallery-order-status[data-state="saved"] {
  color: rgba(125, 215, 153, 0.9);
}

.gallery-order-status[data-state="error"] {
  color: rgba(255, 145, 145, 0.95);
}

.collapse-chat-button {
  min-height: 44px;
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.admin-gallery-preview {
  display: grid;
  place-items: center;
  width: 132px;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.admin-gallery-preview img,
.admin-gallery-preview video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.admin-gallery-meta {
  min-width: 0;
}

.admin-gallery-meta strong,
.admin-gallery-meta small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-gallery-meta small {
  color: var(--muted);
}

.delivery-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.gallery-page {
  background: #080b0f;
}

.gallery-page .site-shell {
  width: min(100% - 2rem, 1440px);
}

.gallery-page .topbar,
.gallery-page .footer {
  display: none;
}

.delivery-gallery {
  min-height: 100vh;
  display: grid;
  gap: 2rem;
  padding: 1.2rem 0 3rem;
}

.delivery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
}

.delivery-actions {
  display: flex;
  gap: 0.8rem;
}

.delivery-review-actions {
  align-items: center;
}

.delivery-approve-form {
  display: inline-flex;
}

.delivery-approve-form button {
  min-height: 44px;
  padding: 0.78rem 1.1rem;
}

.delivery-review-pill {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(230, 197, 143, 0.35);
  border-radius: 999px;
  color: #f0cf9f;
  background: rgba(230, 197, 143, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
}

.delivery-title {
  max-width: 920px;
}

.delivery-title h1 {
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

.draft-notice {
  max-width: 760px;
  color: rgba(238, 242, 246, 0.74);
}

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

.photo-delivery-card {
  display: grid;
  gap: 0.8rem;
}

.photo-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 0;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
}

.draft-media-wrap {
  position: relative;
  -webkit-user-select: none;
  user-select: none;
}

.draft-watermark {
  position: absolute;
  left: 50%;
  top: clamp(0.8rem, 4vw, 2rem);
  z-index: 2;
  translate: -50% 0;
  width: min(76%, 520px);
  padding: clamp(0.55rem, 1.4vw, 0.95rem);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(5, 8, 12, 0.32);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: clamp(0.62rem, 1vw, 0.9rem);
  font-weight: 700;
  pointer-events: none;
  backdrop-filter: blur(5px);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  max-height: 78vh;
  object-fit: contain;
  -webkit-user-drag: none;
  user-select: none;
}

.photo-frame span {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
}

.video-gallery-section {
  display: grid;
  gap: 1.2rem;
}

.video-delivery-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
}

.video-delivery-card video {
  width: 100%;
  max-height: 76vh;
  background: #000;
}

.video-delivery-card div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.video-delivery-card strong {
  color: #fff8ee;
}

.asset-chat {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018)),
    rgba(9, 13, 19, 0.42);
  overflow: hidden;
  user-select: text;
}

.admin-asset-chat {
  grid-column: 1 / -1;
  cursor: auto;
}

.asset-chat.admin-asset-chat summary {
  min-height: 42px;
  padding: 0.55rem 0.7rem;
}

.admin-asset-chat .asset-chat-body {
  gap: 0.6rem;
  max-width: 980px;
  padding: 0 0.7rem 0.75rem;
}

.admin-asset-chat .asset-chat-thread {
  gap: 0.5rem;
  max-width: 760px;
  padding-top: 0.1rem;
}

.admin-asset-chat .asset-chat-bubble,
.admin-asset-chat .asset-chat-bubble.is-admin,
.admin-asset-chat .asset-chat-bubble.is-customer {
  justify-self: start;
  max-width: 100%;
  width: min(100%, 720px);
  padding: 0.62rem 0.75rem;
  border-radius: 12px;
}

.admin-asset-chat .asset-chat-meta {
  justify-content: flex-start;
}

.admin-asset-chat .asset-chat-bubble p {
  margin-top: 0.3rem;
}

.admin-asset-chat .asset-chat-form {
  grid-template-columns: minmax(0, 1fr) 112px;
  max-width: 960px;
}

.admin-asset-chat .asset-chat-form textarea {
  min-height: 48px;
}

.asset-chat summary {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.75rem 0.9rem;
  color: rgba(238, 242, 246, 0.9);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.asset-chat summary::-webkit-details-marker {
  display: none;
}

.asset-chat summary::after {
  content: "+";
  margin-left: auto;
  color: rgba(240, 207, 159, 0.82);
  font-size: 1.2rem;
  font-weight: 500;
}

.asset-chat[open] summary::after {
  content: "−";
}

.asset-chat summary small {
  color: rgba(223, 229, 236, 0.58);
  font-size: 0.78rem;
  font-weight: 600;
}

.asset-chat-indicator {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 207, 159, 0.25);
  background: rgba(255, 255, 255, 0.09);
  flex: 0 0 auto;
}

.asset-chat-indicator.has-customer-reply {
  border-color: rgba(231, 197, 88, 0.7);
  background: rgba(231, 197, 88, 0.92);
  box-shadow: 0 0 0 5px rgba(231, 197, 88, 0.13);
}

.asset-chat-body {
  display: grid;
  gap: 0.85rem;
  padding: 0 0.9rem 0.9rem;
}

.asset-chat-thread {
  display: grid;
  gap: 0.7rem;
  padding-top: 0.3rem;
}

.asset-chat-bubble {
  max-width: min(86%, 720px);
  padding: 0.78rem 0.85rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.042);
}

.asset-chat-bubble.is-admin {
  justify-self: start;
  border-color: rgba(240, 207, 159, 0.18);
  background:
    linear-gradient(135deg, rgba(240, 207, 159, 0.12), rgba(255, 255, 255, 0.028)),
    rgba(12, 17, 24, 0.62);
}

.asset-chat-bubble.is-customer {
  justify-self: end;
  border-color: rgba(151, 196, 223, 0.16);
  background:
    linear-gradient(135deg, rgba(151, 196, 223, 0.1), rgba(255, 255, 255, 0.028)),
    rgba(12, 17, 24, 0.62);
}

.asset-chat-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  color: rgba(223, 229, 236, 0.6);
  font-size: 0.74rem;
}

.asset-chat-meta strong {
  color: rgba(247, 240, 231, 0.92);
}

.asset-chat-bubble p,
.asset-chat-empty {
  margin: 0.45rem 0 0;
  color: rgba(238, 242, 246, 0.82);
  line-height: 1.55;
}

.asset-chat-empty {
  margin: 0;
  color: rgba(223, 229, 236, 0.62);
}

.asset-chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: end;
}

.asset-chat-form textarea {
  min-height: 54px;
  resize: vertical;
}

.gallery-review-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(230, 197, 143, 0.22);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(230, 197, 143, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.gallery-review-panel h2 {
  margin: 0.2rem 0 0.4rem;
}

.gallery-review-panel p {
  margin: 0;
  color: var(--muted);
}

.gallery-payment-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.2rem;
  padding: clamp(1.25rem, 3vw, 2.1rem);
  border: 1px solid rgba(240, 207, 159, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(240, 207, 159, 0.15), transparent 44%),
    rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.gallery-payment-panel h2 {
  margin: 0.2rem 0 0.45rem;
}

.gallery-payment-panel p {
  margin: 0;
}

.gallery-payment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.gallery-payment-actions form {
  display: inline-flex;
}

.stripe-pay-button {
  gap: 0.55rem;
  min-width: 176px;
  color: #1f1930;
}

.stripe-pay-logo {
  display: block;
  width: 68px;
  height: auto;
}

.portal-message-form {
  display: grid;
  gap: 1rem;
}

.portal-message-form {
  margin-top: 0.5rem;
}

.portal-message-form textarea {
  min-height: 120px;
}

.portal-message-form {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.email-template-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.email-template-card textarea {
  min-height: 360px;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.55;
}

.variable-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.variable-pills code {
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(240, 207, 159, 0.18);
  border-radius: 999px;
  background: rgba(240, 207, 159, 0.08);
  color: #f0cf9f;
}

.compact-checkbox {
  max-width: 250px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(5, 7, 10, 0.96);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  min-width: 0;
}

.lightbox img {
  width: 100%;
  height: calc(100vh - 6rem);
  object-fit: contain;
}

.lightbox figcaption {
  color: rgba(238, 242, 246, 0.78);
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
}

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

.info-card,
.price-card,
.gallery-card,
.form-card,
.panel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 1.6rem;
}

.info-card::before,
.price-card::before,
.gallery-card::before,
.form-card::before,
.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 35%);
  pointer-events: none;
}

.info-card strong,
.price-card strong {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.service-price-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(92px, 0.28fr);
  gap: 1.1rem;
  align-items: start;
}

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

.package-size-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 0.55rem;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 207, 159, 0.36);
  background:
    linear-gradient(180deg, rgba(240, 207, 159, 0.2), rgba(240, 207, 159, 0.08)),
    rgba(240, 207, 159, 0.08);
  color: #f5d6a8;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.price-card-price {
  justify-self: end;
  min-width: 92px;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(240, 207, 159, 0.16);
  background:
    linear-gradient(180deg, rgba(240, 207, 159, 0.13), rgba(255, 255, 255, 0.03)),
    rgba(240, 207, 159, 0.04);
  color: var(--accent-dark);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.service-category-addons {
  margin: 0.4rem 0 0.8rem;
}

.addon-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(240, 207, 159, 0.12);
  background:
    linear-gradient(180deg, rgba(240, 207, 159, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(10, 15, 22, 0.38);
}

.addon-panel-copy h2 {
  margin-bottom: 0.55rem;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
}

.addon-panel-copy p {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.65;
}

.addon-list {
  display: grid;
  gap: 0.75rem;
}

.addon-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  background: rgba(255, 255, 255, 0.032);
}

.addon-row strong {
  display: block;
  margin: 0.2rem 0 0.25rem;
  color: rgba(255, 248, 238, 0.95);
  font-size: 0.98rem;
}

.addon-row p {
  margin-bottom: 0;
  font-size: 0.88rem;
  line-height: 1.6;
}

.addon-tag {
  color: var(--accent-dark);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.addon-price {
  min-width: 88px;
  padding: 0.65rem 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(240, 207, 159, 0.16);
  background:
    linear-gradient(180deg, rgba(240, 207, 159, 0.12), rgba(255, 255, 255, 0.025)),
    rgba(240, 207, 159, 0.035);
  color: var(--accent-dark);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.addon-price-bundle {
  display: grid;
  gap: 0.25rem;
  white-space: normal;
}

.addon-price-bundle s {
  color: rgba(223, 229, 236, 0.54);
  font-size: 0.82rem;
}

.addon-price-bundle b {
  color: var(--accent-dark);
}

.addon-price-bundle small {
  color: rgba(240, 207, 159, 0.82);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.price-list,
.service-list,
.portal-list {
  display: grid;
  gap: 1rem;
}

.portal-order-list {
  margin-top: 1rem;
}

.customer-order-pricing {
  display: grid;
  gap: 0.7rem;
  margin: 0.95rem 0;
  padding: 0.95rem;
  border: 1px solid rgba(240, 207, 159, 0.14);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(240, 207, 159, 0.08), rgba(255, 255, 255, 0.02));
}

.customer-order-card {
  display: block;
}

.customer-order-card summary {
  cursor: pointer;
  list-style: none;
}

.customer-order-card summary::-webkit-details-marker {
  display: none;
}

.order-row.customer-order-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px 24px;
  align-items: start;
  column-gap: 1.25rem;
}

.customer-order-summary::after {
  content: "";
  width: 0.58rem;
  height: 0.58rem;
  flex: 0 0 auto;
  justify-self: end;
  margin: 0.72rem 0 0;
  border-right: 2px solid rgba(255, 248, 238, 0.72);
  border-bottom: 2px solid rgba(255, 248, 238, 0.72);
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.customer-order-card[open] .customer-order-summary::after {
  transform: rotate(225deg);
}

.customer-order-summary-meta {
  display: grid;
  grid-template-columns: minmax(128px, auto) auto;
  align-items: start;
  justify-content: flex-end;
  gap: 0.85rem;
  min-width: 0;
}

.customer-order-summary-meta .status {
  justify-content: center;
  min-width: 128px;
  text-align: center;
}

.customer-order-toggle-text {
  color: var(--muted);
  font-size: 0.82rem;
  white-space: nowrap;
}

.customer-order-card[open] .customer-order-toggle-text {
  display: none;
}

.customer-order-body > p {
  margin-top: 0;
}

.customer-order-discount {
  margin: 0;
  color: rgba(255, 248, 238, 0.92);
  font-weight: 700;
}

.customer-order-price-list {
  display: grid;
  gap: 0.45rem;
}

.customer-order-price-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.customer-order-price-list span {
  color: var(--muted);
}

.customer-order-price-list strong {
  color: #fff8ee;
  white-space: nowrap;
}

.customer-order-price-list s {
  margin-right: 0.35rem;
  color: rgba(223, 229, 236, 0.48);
  font-weight: 500;
}

.customer-order-total {
  color: #fff8ee;
}

.empty-state {
  display: grid;
  gap: 0.75rem;
  padding: 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
}

.empty-state p {
  margin: 0;
}

.price-card ul,
.panel ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

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

.gallery-shot {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.shot-1 {
  background-image: url("/static/images/examples/douglas-county-foothills-exterior.svg");
}

.shot-2 {
  background-image: url("/static/images/examples/douglas-county-interior-living.svg");
}

.shot-3 {
  background-image: url("/static/images/examples/douglas-county-detail-kitchen.svg");
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: rgba(247, 240, 231, 0.92);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  font: inherit;
  line-height: 1.5;
  background: rgba(249, 244, 237, 0.08);
  color: #fff8ee;
  color-scheme: dark;
}

select option,
select optgroup {
  background: #1f2630;
  color: #fff8ee;
}

select option:checked {
  background: #2f3a32;
  color: #fff8ee;
}

input::placeholder,
textarea::placeholder {
  color: rgba(226, 231, 236, 0.44);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.portal-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
}

.portal-shell-wide {
  grid-template-columns: minmax(0, 1fr);
}

.portal-side-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-content: start;
}

.portal-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
  max-width: 100%;
  overflow-x: auto;
  padding: 0 0.85rem 0.35rem 0;
  scroll-padding-inline: 0 0.85rem;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.portal-nav a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 42px;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(247, 240, 231, 0.78);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.portal-nav a:hover,
.portal-nav a:focus-visible,
.portal-nav a.is-active {
  border-color: rgba(240, 207, 159, 0.34);
  background:
    linear-gradient(180deg, rgba(240, 207, 159, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(240, 207, 159, 0.035);
  color: #fff;
}

.security-card {
  display: grid;
  gap: 1.25rem;
}

.security-card-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.security-card-head h2,
.security-card-head p {
  margin-bottom: 0;
}

.security-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.security-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.94;
}

.security-icon-letter {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
}

.security-icon-logo img {
  display: block;
  width: 30px;
  height: 30px;
}

.account-settings-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.account-details-layout {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.account-details-layout > .form-card {
  width: 100%;
}

.order-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.order-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.status {
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  background: linear-gradient(180deg, rgba(222, 185, 135, 0.16), rgba(222, 185, 135, 0.08));
  color: #f2cfa0;
}

.footer {
  padding: 1rem 0 3rem;
  color: rgba(236, 240, 244, 0.74);
  font-size: 0.95rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgba(242, 245, 248, 0.12);
  padding-top: 1.5rem;
}

.footer-row strong {
  display: block;
  margin-bottom: 0.45rem;
}

.footer-row p {
  margin-bottom: 0;
}

.home-page .footer {
  padding-top: 0;
  padding-bottom: 2rem;
}

.home-page .footer-row {
  display: none;
}

.flash-stack {
  display: grid;
  gap: 0.8rem;
  margin: 0.5rem 0 1.5rem;
}

.flash {
  position: relative;
  border-radius: 14px;
  padding: 1rem 1.1rem 1rem 3rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  animation: notice-pop 520ms ease both;
}

.flash::before {
  position: absolute;
  left: 1rem;
  top: 50%;
  display: inline-grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  transform: translateY(-50%);
  font-weight: 800;
  line-height: 1;
}

.flash-success {
  border-color: rgba(139, 221, 170, 0.48);
  background:
    linear-gradient(90deg, rgba(81, 180, 117, 0.34), rgba(42, 82, 58, 0.62)),
    rgba(42, 82, 58, 0.62);
  color: #eaf7ef;
  box-shadow:
    0 18px 42px rgba(38, 106, 67, 0.34),
    0 0 0 1px rgba(139, 221, 170, 0.18);
  animation: notice-pop 520ms ease both, success-pulse 1800ms ease 2;
}

.flash-success::before {
  content: "✓";
  background: rgba(234, 247, 239, 0.94);
  color: #255c39;
}

.flash-error {
  background: rgba(122, 54, 44, 0.74);
  color: #fff0ec;
}

.flash-error::before,
.flash-warning::before {
  content: "!";
  background: rgba(255, 255, 255, 0.88);
  color: #6c372d;
}

.flash-warning {
  background: rgba(132, 94, 36, 0.74);
  color: #fff4dc;
}

@keyframes notice-pop {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes success-pulse {
  0%,
  100% {
    box-shadow:
      0 18px 42px rgba(38, 106, 67, 0.34),
      0 0 0 1px rgba(139, 221, 170, 0.18);
  }
  50% {
    box-shadow:
      0 22px 52px rgba(61, 174, 103, 0.5),
      0 0 0 6px rgba(139, 221, 170, 0.12);
  }
}

.auth-card {
  max-width: 780px;
  margin: 0 auto;
}

.auth-card-wide {
  max-width: 1040px;
}

.auth-page {
  gap: 1rem;
}

.auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: 2rem;
  align-items: center;
}

.auth-side {
  display: grid;
  gap: 1.1rem;
  align-content: start;
}

.auth-copy {
  max-width: 30rem;
}

.auth-note {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.auth-note strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #fff7ee;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.auth-note p {
  margin-bottom: 0;
}

.auth-inline-link {
  justify-self: start;
  color: #f0cf9f;
  font-size: 0.95rem;
}

.auth-inline-link:hover {
  color: #fff8ee;
}

.auth-form-pane {
  padding: 1rem 0 0;
}

.google-auth-button {
  width: 100%;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.035);
  color: #fff;
}

.google-auth-button:hover,
.google-auth-button:focus-visible {
  border-color: rgba(240, 207, 159, 0.34);
  background:
    linear-gradient(180deg, rgba(240, 207, 159, 0.14), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.045);
}

.google-auth-logo {
  display: block;
  width: 24px;
  height: 24px;
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
  margin: 0.25rem 0 1rem;
  color: rgba(223, 229, 236, 0.58);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  color: #fff7ee;
}

.auth-brand-mark {
  width: 56px;
  height: 56px;
  color: #fff;
  flex: 0 0 auto;
}

.auth-brand strong {
  display: block;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-brand small {
  display: block;
  margin-top: 0.15rem;
  color: rgba(244, 233, 219, 0.68);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.auth-actions > * {
  flex: 1 1 220px;
}

button:disabled,
.button.disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.service-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.service-chip span {
  color: var(--accent-dark);
  white-space: nowrap;
}

.price-line {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: baseline;
}

.price-line s,
.service-chip s {
  color: rgba(223, 229, 236, 0.54);
}

.price-line b {
  color: var(--accent-dark);
  font-weight: 700;
}

.customer-savings {
  display: block;
  margin-top: 0.25rem;
  color: rgba(166, 230, 181, 0.9);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: normal;
}

.bundle-savings {
  display: block;
  margin-top: 0.35rem;
  color: rgba(240, 207, 159, 0.82);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: normal;
}

.custom-offer {
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 0;
  background:
    linear-gradient(90deg, rgba(240, 207, 159, 0.18), rgba(240, 207, 159, 0.08) 52%, rgba(240, 207, 159, 0) 100%);
}

.custom-offer strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #fff8ee;
}

.custom-offer p,
.custom-offer-line {
  margin-bottom: 0;
  color: rgba(240, 207, 159, 0.86);
}

.field-help {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
}

.password-check-wrap {
  position: relative;
  display: block;
}

.password-check-wrap input {
  padding-right: 6rem;
}

.password-check-indicator {
  position: absolute;
  top: 50%;
  right: 1rem;
  translate: 0 -50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.8rem;
  min-height: 2rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(238, 242, 246, 0.7);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  pointer-events: none;
}

.password-check-indicator[data-status="safe"] {
  min-width: 2.2rem;
  border-color: rgba(91, 214, 140, 0.45);
  background: rgba(91, 214, 140, 0.16);
  color: #bff4d1;
  font-size: 1rem;
}

.password-check-indicator[data-status="warning"],
.password-check-indicator[data-status="breached"] {
  min-width: 2.2rem;
  border-color: rgba(240, 207, 159, 0.48);
  background: rgba(240, 207, 159, 0.14);
  color: #ffe6b6;
  font-size: 1rem;
}

.password-check-indicator[data-status="checking"],
.password-check-indicator[data-status="unavailable"] {
  border-color: rgba(240, 207, 159, 0.28);
  background: rgba(240, 207, 159, 0.1);
  color: #f0cf9f;
}

.security-status {
  margin-bottom: 1rem;
}

.security-form {
  margin-top: 1rem;
}

.service-chip-wide {
  align-items: flex-start;
}

.service-chip-wide p {
  margin-bottom: 0;
}

.service-editor {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
}

.service-editor {
  border: 1px solid rgba(255, 255, 255, 0.055);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
}

.service-editor-panel {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  overflow: hidden;
}

.service-editor-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.15rem;
  cursor: pointer;
  list-style: none;
}

.service-editor-summary::-webkit-details-marker {
  display: none;
}

.service-editor-summary::after {
  content: "+";
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--accent-dark);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  font-size: 1.1rem;
  line-height: 1;
}

.service-editor-panel[open] .service-editor-summary::after {
  content: "-";
}

.service-editor-summary strong,
.service-editor-summary small {
  display: block;
}

.service-editor-summary small {
  margin-top: 0.2rem;
  color: var(--muted);
}

.service-summary-price {
  color: var(--accent-dark);
  font-weight: 700;
  white-space: nowrap;
}

.service-editor-panel .service-editor {
  margin-top: 0;
  border-inline: 0;
  border-bottom: 0;
  border-radius: 0;
  background: transparent;
}

.service-catalog-actions,
.service-catalog-footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem;
}

.service-catalog-footer-actions {
  padding-top: 0.25rem;
}

.service-catalog-section {
  display: grid;
  gap: 0.85rem;
}

.service-catalog-section + .service-catalog-section {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.service-catalog-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.service-catalog-section-head small {
  color: var(--muted);
}

.service-catalog-items {
  display: grid;
  gap: 0.75rem;
}

.service-editor-delete-row {
  display: flex;
  justify-content: flex-end;
  padding-top: 0.25rem;
}

.button.danger,
button.danger {
  background: linear-gradient(180deg, rgba(118, 45, 45, 0.88), rgba(82, 27, 27, 0.88));
  color: rgba(255, 245, 242, 0.94);
}

.nested-offering-box {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(240, 207, 159, 0.12);
  background:
    linear-gradient(180deg, rgba(240, 207, 159, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(10, 15, 22, 0.28);
}

.offering-comparison-box {
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: 1.25rem;
}

.offering-comparison-box:has(.offering-column-addons[hidden]) {
  grid-template-columns: 1fr;
}

.offering-single-column-box {
  grid-template-columns: 1fr;
}

.offering-column {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  min-width: 0;
}

.offering-column h2 {
  margin-bottom: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 1.1rem;
  font-weight: 650;
  letter-spacing: 0;
}

.offering-column > p {
  margin: -0.35rem 0 0;
  font-size: 0.92rem;
}

.offering-column .section-grid {
  grid-template-columns: 1fr;
}

.service-price-card .price-card-copy > strong {
  font-size: clamp(1.35rem, 1.5vw, 1.65rem);
  line-height: 1.16;
}

.offering-column-addons .addon-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  align-content: start;
  padding: 0;
  border: 0;
  background: transparent;
}

.public-offering-box .offering-column-addons .addon-panel {
  margin: 0;
}

.offering-column-addons .addon-panel-copy h2 {
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.offering-column-addons .addon-list {
  margin-top: 0.05rem;
}

.public-offering-box .offering-column-addons .addon-list {
  margin-top: 3.25rem;
}

.offering-column-addons .addon-row:first-child {
  margin-top: 0;
}

.nested-addon-section {
  margin-top: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(240, 207, 159, 0.13);
}

.offering-column-addons.nested-addon-section,
.offering-column-addons .nested-addon-section {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.public-offering-box {
  margin-top: 0.25rem;
}

.portal-order-flow {
  gap: 1.45rem;
}

.portal-account-line {
  display: grid;
  gap: 0.18rem;
  margin: -0.2rem 0 1rem;
}

.portal-account-label {
  color: rgba(223, 229, 236, 0.62);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portal-account-name {
  color: #fff8ee;
  font-size: 1rem;
  line-height: 1.25;
}

.portal-account-email {
  color: rgba(223, 229, 236, 0.58);
  font-size: 0.82rem;
  line-height: 1.3;
  word-break: break-word;
}

.portal-order-flow > .service-selector,
.portal-order-flow > .order-path-panel,
.portal-order-flow > .order-summary-card {
  margin-top: 0.15rem;
}

.order-summary-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.28fr);
  gap: 1rem;
  align-items: start;
  padding: 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(240, 207, 159, 0.2);
  background:
    linear-gradient(180deg, rgba(240, 207, 159, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(10, 15, 22, 0.42);
}

.order-summary-card h2 {
  margin-bottom: 0.45rem;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 650;
  letter-spacing: 0;
}

.order-summary-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.order-summary-list strong {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem;
  min-width: 110px;
}

.order-summary-list s {
  color: rgba(223, 229, 236, 0.54);
}

.order-summary-list b {
  color: var(--accent-dark);
}

.order-summary-total {
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem;
  border-radius: 16px;
  background: rgba(240, 207, 159, 0.08);
  border: 1px solid rgba(240, 207, 159, 0.16);
}

.order-summary-total span,
.order-summary-total small {
  color: var(--muted);
}

.order-summary-total strong {
  color: var(--accent-dark);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1;
}

.service-catalog-panel {
  width: 100%;
}

.service-catalog-panel .service-list {
  gap: 1.1rem;
}

.service-catalog-panel .selector-heading {
  margin-top: 0.75rem;
}

.service-catalog-panel .selector-heading:first-child {
  margin-top: 0;
}

.service-editor-grid {
  grid-template-columns: minmax(240px, 1.3fr) minmax(180px, 0.8fr) minmax(120px, 0.45fr) minmax(150px, 0.55fr) minmax(170px, 0.65fr);
  align-items: start;
}

.service-editor textarea {
  min-height: 110px;
}

.service-editor .button,
.service-editor button {
  justify-self: end;
  min-width: 180px;
}

.service-form-page {
  max-width: 920px;
  margin-inline: auto;
}

.service-form-page form {
  margin-top: 1.5rem;
}

.service-form-page textarea {
  min-height: 190px;
}

.service-selector {
  margin: 0;
  padding: 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.service-selector legend {
  padding: 0 0.4rem;
}

.service-category {
  display: grid;
  gap: 1rem;
}

.selector-group {
  display: grid;
  gap: 1rem;
}

.order-path-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.order-path-panel {
  display: grid;
  gap: 1.25rem;
  animation: panelRise 220ms ease both;
}

.order-path-panel[hidden],
[data-addon-panel][hidden] {
  display: none !important;
}

.selector-group + .selector-group {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.selector-heading {
  color: rgba(244, 233, 219, 0.88);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.checkbox-row input {
  width: auto;
  margin-top: 0.3rem;
}

.checkbox-row small {
  display: block;
  color: var(--muted);
  margin-top: 0.25rem;
  line-height: 1.5;
}

.offering-row {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  letter-spacing: 0;
  text-transform: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.offering-row:hover {
  transform: translateY(-1px);
  border-color: rgba(240, 207, 159, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.025));
}

.offering-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(92px, 0.24fr);
  gap: 1rem;
  align-items: start;
  width: 100%;
}

.offering-row-addon {
  padding: 0.85rem 0.95rem;
}

.offering-row-addon .offering-content {
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 1.15rem;
  align-items: center;
}

.offering-row-addon .offering-copy strong {
  font-size: 0.98rem;
}

.offering-row-addon .offering-copy small {
  max-width: 64rem;
  font-size: 0.9rem;
  line-height: 1.45;
}

.offering-copy {
  min-width: 0;
}

.offering-copy strong {
  display: block;
  color: rgba(247, 240, 231, 0.96);
  font-size: 1rem;
  line-height: 1.25;
}

.offering-copy .package-size-badge {
  margin: 0.45rem 0 0.35rem;
}

.order-path-option {
  min-height: 142px;
  padding: 1.1rem;
}

.order-path-option .offering-content {
  grid-template-columns: 1fr;
}

.order-path-option strong {
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.order-path-option small {
  max-width: 30ch;
  font-size: 0.88rem;
  text-transform: none;
}

.offering-price {
  justify-self: end;
  min-width: 92px;
  padding: 0.65rem 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(240, 207, 159, 0.15);
  background:
    linear-gradient(180deg, rgba(240, 207, 159, 0.12), rgba(255, 255, 255, 0.025)),
    rgba(240, 207, 159, 0.035);
  color: var(--accent-dark);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.offering-price-bundle {
  min-width: 142px;
  white-space: normal;
}

.offering-row-addon {
  transition: opacity 180ms ease, border-color 180ms ease, background 180ms ease;
}

.offering-row-addon .offering-price {
  align-self: center;
  width: 100%;
  padding: 0.58rem 0.65rem;
}

.offering-row-addon .bundle-savings {
  margin-top: 0.28rem;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.offering-row-disabled {
  opacity: 0.48;
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.035);
  background: rgba(255, 255, 255, 0.018);
}

.offering-row-disabled input,
.offering-row-disabled span {
  cursor: not-allowed;
}

.addon-lock-note {
  margin: -0.15rem 0 0.85rem;
  color: rgba(240, 207, 159, 0.82);
}

.offering-row-twilight {
  border-color: rgba(231, 197, 88, 0.24);
  background: linear-gradient(180deg, rgba(231, 197, 88, 0.11), rgba(255, 255, 255, 0.03));
}

.offering-row-twilight.offering-row-disabled {
  border-color: rgba(231, 197, 88, 0.12);
  background: linear-gradient(180deg, rgba(231, 197, 88, 0.045), rgba(255, 255, 255, 0.018));
}

.offering-row:has(input:checked),
.calendar-slot:has(input:checked) {
  border-color: rgba(240, 207, 159, 0.42);
  box-shadow: 0 0 0 1px rgba(240, 207, 159, 0.18) inset;
}

.order-path-option:has(input:checked),
.offering-row:has(input:checked) {
  background:
    linear-gradient(180deg, rgba(240, 207, 159, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(240, 207, 159, 0.035);
}

@keyframes panelRise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.calendar-selector {
  display: grid;
  gap: 1rem;
}

.calendar-note {
  margin: 0;
  font-size: 0.92rem;
}

.order-stepper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.4rem;
}

.order-step-indicator {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 0.9rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  color: rgba(244, 233, 219, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: left;
}

.order-step-indicator span {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  border: 1px solid rgba(240, 207, 159, 0.22);
  color: #f0cf9f;
}

.order-step-indicator.is-active {
  border-color: rgba(240, 207, 159, 0.4);
  background: linear-gradient(180deg, rgba(240, 207, 159, 0.16), rgba(255, 255, 255, 0.03));
  color: #fff8ee;
}

.order-step-indicator.is-active span {
  background: rgba(240, 207, 159, 0.16);
  border-color: rgba(240, 207, 159, 0.48);
}

.order-confirmation-form {
  gap: 0;
}

.order-step-panel {
  display: grid;
  gap: 1.1rem;
  animation: panelRise 180ms ease both;
}

.order-step-panel[hidden] {
  display: none;
}

.order-step-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.order-step-panel-head h2 {
  margin: 0.2rem 0 0.35rem;
}

.order-step-panel-head p {
  margin-bottom: 0;
}

.order-step-total {
  display: inline-flex;
  min-width: 130px;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(240, 207, 159, 0.22);
  background: linear-gradient(180deg, rgba(240, 207, 159, 0.13), rgba(255, 255, 255, 0.03));
  color: #f0cf9f;
  font-size: 1.35rem;
}

.month-calendar {
  display: grid;
  gap: 0.9rem;
}

.month-calendar-head,
.month-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.75rem;
}

.month-calendar-head {
  color: rgba(244, 233, 219, 0.7);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.month-calendar-head div {
  padding: 0.25rem 0.4rem;
}

.month-day {
  display: grid;
  align-content: start;
  gap: 0.6rem;
  min-height: 146px;
  padding: 0.9rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  color: #fff8ee;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.month-day:hover {
  transform: translateY(-1px);
  border-color: rgba(240, 207, 159, 0.24);
}

.month-day-static:hover {
  transform: none;
}

.month-day-outside {
  opacity: 0.32;
}

.month-day-past {
  opacity: 0.42;
  cursor: not-allowed;
}

.month-day:disabled {
  cursor: not-allowed;
}

.month-day:disabled:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.06);
}

.month-day-blocked {
  border-color: rgba(154, 165, 178, 0.18);
  background: linear-gradient(180deg, rgba(122, 132, 146, 0.12), rgba(255, 255, 255, 0.02));
}

.month-day-today {
  border-color: rgba(154, 165, 178, 0.34);
  background: linear-gradient(180deg, rgba(126, 136, 150, 0.18), rgba(255, 255, 255, 0.03));
  box-shadow: 0 0 0 1px rgba(154, 165, 178, 0.14) inset;
}

.month-day-selected {
  border-color: rgba(240, 207, 159, 0.66);
  background: linear-gradient(180deg, rgba(240, 207, 159, 0.22), rgba(255, 255, 255, 0.04));
  box-shadow: 0 0 0 1px rgba(240, 207, 159, 0.28) inset;
}

.month-day-number {
  font-size: 1.2rem;
  font-weight: 700;
}

.month-day-badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: rgba(154, 165, 178, 0.2);
  color: rgba(244, 233, 219, 0.82);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.schedule-selection {
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.schedule-selection-head p {
  margin-bottom: 0;
}

.schedule-callout {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(240, 207, 159, 0.22);
  background: linear-gradient(180deg, rgba(240, 207, 159, 0.12), rgba(255, 255, 255, 0.03));
}

.schedule-callout p {
  margin: 0.35rem 0 0;
}

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

.schedule-option {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease;
}

.schedule-option:hover {
  transform: translateY(-1px);
}

.schedule-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.schedule-option-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff9f2;
}

.schedule-option-kicker {
  color: #ffe6a7;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.schedule-option-detail {
  color: var(--muted);
  line-height: 1.5;
}

.schedule-option-premium {
  border-color: rgba(231, 197, 88, 0.32);
  background:
    radial-gradient(circle at top right, rgba(231, 197, 88, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(231, 197, 88, 0.16), rgba(255, 255, 255, 0.03));
}

.schedule-option-disabled {
  opacity: 0.34;
  cursor: not-allowed;
}

.schedule-option:has(input:checked) {
  border-color: rgba(240, 207, 159, 0.48);
  box-shadow: 0 0 0 1px rgba(240, 207, 159, 0.18) inset;
}

.admin-day-meta {
  color: var(--muted);
  font-size: 0.82rem;
}

.month-calendar-admin {
  overflow-x: auto;
  padding-bottom: 0.2rem;
}

.month-calendar-admin .month-calendar-head,
.month-calendar-admin .month-calendar-grid {
  min-width: 1050px;
  gap: 0;
}

.month-calendar-admin .month-calendar-head {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  background: rgba(255, 255, 255, 0.035);
}

.month-calendar-admin .month-calendar-head div {
  padding: 0.8rem 0.9rem;
}

.month-calendar-admin .month-calendar-grid {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.month-calendar-admin .month-day {
  min-height: 178px;
  gap: 0.5rem;
  border-top: 0;
  border-left: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.025);
}

.month-calendar-admin .month-day-booked {
  border-color: rgba(240, 207, 159, 0.2);
  background:
    linear-gradient(180deg, rgba(240, 207, 159, 0.12), rgba(255, 255, 255, 0.028)),
    rgba(18, 25, 34, 0.62);
  box-shadow: inset 0 0 0 1px rgba(240, 207, 159, 0.08);
}

.month-calendar-admin .month-day:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.month-calendar-admin .month-day-outside {
  opacity: 1;
  background: rgba(255, 255, 255, 0.012);
}

.month-calendar-admin .month-day-outside .month-day-number,
.month-calendar-admin .month-day-outside .admin-day-meta,
.month-calendar-admin .month-day-outside .admin-booking-chip {
  opacity: 0.42;
}

.month-calendar-admin .month-day-today {
  background: linear-gradient(180deg, rgba(240, 207, 159, 0.1), rgba(255, 255, 255, 0.025));
}

.admin-day-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.month-calendar-admin .month-day-number {
  font-size: 1rem;
}

.month-calendar-admin .month-day-badge {
  padding: 0.12rem 0.42rem;
  font-size: 0.62rem;
}

.month-calendar-admin .admin-day-meta {
  white-space: nowrap;
  font-size: 0.76rem;
}

.admin-day-bookings {
  display: grid;
  gap: 0.45rem;
}

.admin-booking-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-width: 0;
  padding: 0.55rem 0.6rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

a.admin-booking-chip:hover,
a.admin-booking-chip:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(240, 207, 159, 0.36);
  background: linear-gradient(180deg, rgba(240, 207, 159, 0.18), rgba(255, 255, 255, 0.04));
}

.admin-booking-chip strong {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 248, 238, 0.92);
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-booking-chip small,
.admin-booking-chip span {
  min-width: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-booking-chip-filled {
  border-color: rgba(151, 196, 223, 0.22);
  background: linear-gradient(180deg, rgba(151, 196, 223, 0.14), rgba(255, 255, 255, 0.03));
}

.admin-booking-chip-twilight {
  border-color: rgba(231, 197, 88, 0.22);
  background: linear-gradient(180deg, rgba(231, 197, 88, 0.1), rgba(255, 255, 255, 0.03));
}

.order-card {
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.admin-order-form {
  display: grid;
  gap: 0.9rem;
}

.schedule-approval-note {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(240, 207, 159, 0.12);
  background: linear-gradient(90deg, rgba(240, 207, 159, 0.1), rgba(255, 255, 255, 0.025));
}

.schedule-approval-note strong {
  display: block;
  color: #fff8ee;
}

.schedule-approval-note p {
  margin: 0.3rem 0 0;
  color: var(--muted);
}

.admin-order-details {
  display: block;
}

.admin-order-details.is-complete {
  border-color: rgba(116, 188, 135, 0.24);
  background: linear-gradient(180deg, rgba(116, 188, 135, 0.12), rgba(255, 255, 255, 0.02));
}

.admin-order-details.is-closed {
  border-color: rgba(176, 132, 132, 0.2);
  background: linear-gradient(180deg, rgba(176, 132, 132, 0.08), rgba(255, 255, 255, 0.02));
}

.admin-order-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: start;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
}

.admin-order-summary::-webkit-details-marker {
  display: none;
}

.admin-order-summary::after {
  content: "+";
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  font-size: 1.15rem;
  line-height: 1;
}

.admin-order-details[open] .admin-order-summary::after {
  content: "-";
}

.admin-order-details .admin-order-form {
  margin-top: 1rem;
}

.admin-order-pricing {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(240, 207, 159, 0.14);
  border-radius: 14px;
  background: rgba(240, 207, 159, 0.045);
}

.admin-order-pricing h3 {
  margin: 0.25rem 0 0.35rem;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.admin-order-pricing p {
  margin: 0;
  font-size: 0.86rem;
}

.admin-order-pricing-list {
  display: grid;
  gap: 0.65rem;
}

.admin-order-price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 160px);
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.admin-order-price-row span,
.admin-order-price-row small {
  display: block;
}

.admin-order-price-row small {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

.admin-order-price-row input {
  text-align: right;
}

.admin-order-pricing-total,
.customer-order-total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-order-pricing-total small {
  color: var(--accent-dark);
}

.admin-orders-note {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.delivered-archive-note {
  margin: 0.9rem 0 0;
  color: var(--muted);
}

.admin-order-complete-line {
  color: rgba(166, 230, 181, 0.92);
}

.admin-order-closed-line {
  color: rgba(224, 176, 176, 0.86);
}

.status-complete {
  background: linear-gradient(180deg, rgba(116, 188, 135, 0.24), rgba(116, 188, 135, 0.14));
  border-color: rgba(116, 188, 135, 0.34);
  color: #eefbef;
}

.status-closed {
  background: linear-gradient(180deg, rgba(176, 132, 132, 0.22), rgba(176, 132, 132, 0.12));
  border-color: rgba(176, 132, 132, 0.28);
  color: #fff1f1;
}

.qr-card {
  max-width: 260px;
  margin: 1.2rem 0;
  padding: 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.05);
}

code {
  font-family: "Courier New", monospace;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.15rem 0.4rem;
  border-radius: 8px;
}

.home-hero {
  min-height: calc(100vh - 92px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4rem 0 2rem;
}

.home-copy {
  max-width: 760px;
  padding: 6rem 0 2rem;
}

.home-lead {
  font-size: 1.2rem;
  max-width: 640px;
}

.home-subcopy {
  max-width: 560px;
}

.home-trust-badge {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  max-width: 680px;
  margin: 1.4rem 0 0;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 250, 245, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(7, 10, 14, 0.48), rgba(7, 10, 14, 0.28));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.home-trust-badge strong {
  display: block;
  margin-bottom: 0.28rem;
  color: #fffaf5;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-trust-badge p {
  max-width: none;
  margin-bottom: 0;
  color: rgba(255, 250, 245, 0.86);
  font-size: 0.9rem;
  line-height: 1.65;
}

.drone-icon {
  width: 3rem;
  height: 3rem;
  margin-top: 0.05rem;
  padding: 0.42rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 250, 245, 0.34);
  background: rgba(255, 250, 245, 0.08);
  color: #fffaf5;
  stroke-width: 3.2;
  flex: 0 0 auto;
}

.home-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0 1rem;
  border-top: 1px solid rgba(255, 250, 245, 0.2);
}

.home-bottom-item {
  max-width: 420px;
}

.home-bottom-item span {
  display: block;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

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

.example-feature {
  min-height: 460px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.gallery-example-card {
  display: grid;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(8, 12, 18, 0.42);
  transition: border-color 180ms ease, transform 180ms ease;
  min-height: 0;
  align-self: start;
}

.gallery-example-card:hover,
.gallery-example-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(240, 207, 159, 0.34);
}

.gallery-example-media {
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(240, 207, 159, 0.08), transparent 38%),
    rgba(255, 255, 255, 0.018);
}

.gallery-example-media img,
.gallery-example-media video {
  width: 100%;
  height: auto;
  max-height: 58vh;
  display: block;
  object-fit: contain;
}

.gallery-example-media video {
  background: transparent;
}

.gallery-example-card .example-overlay {
  position: relative;
  padding: 1.2rem 1.4rem 1.35rem;
  background:
    linear-gradient(180deg, rgba(17, 13, 10, 0.66), rgba(17, 13, 10, 0.84)),
    rgba(8, 12, 18, 0.62);
  transition: background 180ms ease;
}

.example-one {
  background-image: linear-gradient(rgba(34, 29, 22, 0.18), rgba(34, 29, 22, 0.52)), url("/static/images/examples/douglas-county-foothills-exterior.svg");
}

.example-two {
  background-image: linear-gradient(rgba(27, 34, 40, 0.2), rgba(27, 34, 40, 0.5)), url("/static/images/examples/douglas-county-interior-living.svg");
}

.example-three {
  background-image: linear-gradient(rgba(40, 31, 22, 0.18), rgba(40, 31, 22, 0.52)), url("/static/images/examples/douglas-county-detail-kitchen.svg");
}

.example-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem;
  color: #fffaf5;
  background: linear-gradient(180deg, transparent, rgba(27, 20, 14, 0.78));
}

.example-overlay strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.example-overlay p {
  color: rgba(255, 250, 245, 0.86);
  margin-bottom: 0;
}

.empty-examples-panel {
  max-width: 760px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.25rem;
  align-items: start;
}

.contact-card,
.contact-side-panel {
  display: grid;
  gap: 1.1rem;
}

.contact-card-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.contact-phone-panel {
  display: grid;
  gap: 0.2rem;
  min-width: 240px;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(240, 207, 159, 0.22);
  background: linear-gradient(180deg, rgba(240, 207, 159, 0.12), rgba(255, 255, 255, 0.02));
}

.contact-phone-panel span,
.contact-meta-label {
  color: rgba(240, 207, 159, 0.88);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-phone-panel a {
  color: #fff8ee;
  font-size: 1.15rem;
  font-weight: 700;
}

.contact-phone-panel small {
  color: var(--muted);
  line-height: 1.5;
}

.contact-checklist {
  display: grid;
  gap: 1rem;
}

.contact-checklist > div {
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
}

.contact-checklist p,
.admin-message-card p {
  margin-bottom: 0;
}

.order-inline-actions {
  margin-bottom: 1rem;
}

.customer-card.is-highlighted,
.customer-card.is-highlighted[open] {
  border-color: rgba(240, 207, 159, 0.42);
  box-shadow: 0 0 0 1px rgba(240, 207, 159, 0.12);
}

.customer-alert-pill {
  background: rgba(240, 207, 159, 0.12) !important;
  color: #fff8ee !important;
}

.admin-message-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.admin-message-card {
  gap: 1rem;
}

.admin-message-card.is-unresolved {
  border-color: rgba(240, 207, 159, 0.22);
  background: linear-gradient(180deg, rgba(240, 207, 159, 0.08), rgba(255, 255, 255, 0.02));
}

.admin-message-row {
  align-items: flex-start;
}

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

.contact-meta-grid > div {
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.inline-admin-form {
  display: inline-flex;
}

@media (max-width: 1080px) {
  .admin-layout,
  .admin-gallery-layout,
  .addon-panel,
  .account-settings-grid,
  .contact-layout,
  .contact-meta-grid,
  .founder-promise,
  .guarantee-flow,
  .guarantee-grid,
  .guarantee-hero,
  .hero,
  .split,
  .portal-shell,
  .portal-side-stack,
  .form-grid,
  .section-grid,
  .gallery-grid,
  .admin-gallery-grid,
  .gallery-review-panel,
  .gallery-payment-panel,
  .openclaw-dashboard-grid,
  .openclaw-schema-grid,
  .service-price-card,
  .offering-comparison-box,
  .order-summary-card,
  .order-path-grid,
  .offering-content,
  .addon-row,
  .photo-click-gallery,
  .examples-grid,
  .schedule-options {
    grid-template-columns: 1fr;
  }

  .price-card-price,
  .offering-price,
  .addon-price {
    justify-self: start;
  }

  .public-offering-box .offering-column-addons .addon-list {
    margin-top: 0.05rem;
  }

  .asset-chat-bubble {
    max-width: 100%;
  }

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

  .hero-visual {
    min-height: 380px;
  }

  .hero-copy {
    padding: 2rem;
  }

  .service-chip,
  .admin-access-summary,
  .admin-access-actions,
  .form-actions,
  .admin-gallery-head,
  .delivery-header,
  .video-delivery-card div,
  .footer-row,
  .home-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .topbar-actions {
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.9rem 1.2rem;
  }

  .nav {
    flex: 1 1 720px;
    justify-content: flex-start;
    gap: 1rem;
    font-size: 0.74rem;
  }

  .portal-float-link {
    min-height: 44px;
    margin-left: auto;
  }
}

@media (max-width: 920px) {
  .admin-layout,
  .admin-gallery-layout,
  .addon-panel,
  .account-settings-grid,
  .contact-layout,
  .contact-meta-grid,
  .founder-promise,
  .guarantee-flow,
  .guarantee-grid,
  .guarantee-hero,
  .hero,
  .split,
  .portal-shell,
  .portal-side-stack,
  .form-grid,
  .section-grid,
  .gallery-grid,
  .admin-gallery-grid,
  .gallery-review-panel,
  .service-price-card,
  .offering-comparison-box,
  .order-summary-card,
  .order-path-grid,
  .offering-content,
  .addon-row,
  .photo-click-gallery,
  .examples-grid,
  .schedule-options {
    grid-template-columns: 1fr;
  }

  .price-card-price,
  .offering-price,
  .addon-price {
    justify-self: start;
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-copy {
    padding: 2rem;
  }

  .home-hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .home-copy {
    padding-top: 3rem;
  }

  .brand {
    gap: 0.75rem;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .nav {
    width: 100%;
    flex: 1 1 auto;
  }

  .auth-layout {
    grid-template-columns: 1fr;
  }

  .auth-form-pane {
    padding-top: 0;
  }

  .admin-console,
  .admin-console.is-sidebar-collapsed {
    --admin-sidebar-width: 1fr;
    grid-template-columns: 1fr;
  }

  .openclaw-console,
  .openclaw-console.is-sidebar-collapsed {
    grid-template-rows: none;
    max-height: none;
    overflow: visible;
  }

  .openclaw-main-column {
    grid-column: 1;
    grid-template-rows: none;
    height: auto;
    overflow: visible;
  }

  .openclaw-admin-page .openclaw-prompt-form {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .openclaw-admin-page .openclaw-prompt-actions button {
    min-height: 54px;
  }

  .openclaw-thread-panel > .panel {
    max-height: none;
    overflow: visible;
  }

  .openclaw-scroll-window {
    max-height: 65vh;
  }

  .openclaw-prompt-actions {
    grid-template-columns: 1fr;
  }

  .openclaw-prompt-actions button {
    justify-self: stretch;
    width: 100%;
  }

  .admin-console > :not(.admin-sidebar),
  .admin-sidebar {
    grid-column: 1;
  }

  .openclaw-console .admin-console-intro,
  .openclaw-console .openclaw-hero-panel,
  .openclaw-console .openclaw-thread-panel,
  .openclaw-console .openclaw-schema-panel {
    grid-column: 1;
    grid-row: auto;
  }

  .admin-sidebar {
    grid-row: auto;
    position: relative;
    top: auto;
    min-height: auto;
    max-height: none;
  }

  .admin-console.is-sidebar-collapsed .admin-sidebar-brand {
    display: inline-flex;
  }

  .admin-console.is-sidebar-collapsed .admin-sidebar-title,
  .admin-console.is-sidebar-collapsed .admin-nav-label {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
  }

  .admin-console.is-sidebar-collapsed .admin-subnav a {
    justify-content: flex-start;
    padding-inline: 0.85rem;
  }

  .admin-panel-head {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-subnav .admin-subnav-signout {
    margin-left: 0;
  }

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

  .about-equipment > div:first-child,
  .about-equipment-content {
    grid-column: auto;
  }

  .calendar-controls-form {
    grid-template-columns: 1fr;
  }

  .customer-summary,
  .customer-detail-grid,
  .admin-gallery-item,
  .admin-gallery-quick-form {
    grid-template-columns: 1fr;
  }

  .admin-gallery-drag-handle,
  .admin-gallery-preview {
    width: 100%;
  }

  .customer-summary::after {
    justify-self: start;
  }

  .customer-summary-stats {
    justify-content: flex-start;
  }

  .customer-detail-footer,
  .customer-actions,
  .admin-gallery-card-head {
    align-items: stretch;
    flex-direction: column;
  }

  .photo-frame {
    min-height: 240px;
  }

  .lightbox {
    grid-template-columns: 1fr;
  }

  .lightbox-nav {
    width: 100%;
  }

  .month-calendar-head,
  .month-calendar-grid {
    gap: 0.45rem;
  }

  .month-day {
    min-height: 120px;
    padding: 0.75rem;
  }
}

@media (max-width: 720px) {
  :root {
    --shadow: 0 18px 44px rgba(3, 7, 14, 0.32);
  }

  body {
    background-attachment: scroll;
  }

  .site-shell,
  .home-page .site-shell,
  .gallery-page .site-shell {
    width: min(100% - 1rem, var(--max));
  }

  .topbar {
    gap: 0.85rem;
    padding: 0.9rem 0 0.7rem;
  }

  .brand {
    width: 100%;
    min-width: 0;
  }

  .brand-mark,
  .auth-brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-text {
    min-width: 0;
  }

  .brand-text strong {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }

  .brand-text small {
    font-size: 0.5rem;
    letter-spacing: 0.18em;
  }

  .nav {
    display: flex;
    width: calc(100vw - 1rem);
    max-width: calc(100vw - 1rem);
    margin-inline: -0.05rem;
    padding: 0.15rem 0 0.45rem;
    gap: 1rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    flex-wrap: nowrap;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    -webkit-overflow-scrolling: touch;
  }

  .topbar-actions {
    width: 100%;
    gap: 0.7rem;
    flex-direction: column;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
    min-height: auto;
    padding: 0.3rem 0;
  }

  .portal-float-link {
    align-self: flex-end;
    min-height: 42px;
    padding: 0.65rem 0.9rem 0.65rem 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .section {
    padding: 1.8rem 0;
  }

  .page-wrap,
  .price-list,
  .portal-list,
  .service-list {
    gap: 0.85rem;
  }

  .page-intro {
    margin-bottom: 1.25rem;
  }

  .pricing-relationship-note {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1rem 1.05rem;
  }

  .pricing-relationship-mark {
    justify-content: flex-start;
    gap: 0.8rem;
    padding: 0 0 0.85rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .pricing-relationship-label {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 0.9rem;
    letter-spacing: 0.22em;
  }

  .pricing-relationship-symbol {
    font-size: 3.7rem;
  }

  .page-intro h1,
  .guarantee-copy h1,
  .home-copy h1,
  h1 {
    font-size: clamp(2.55rem, 14vw, 4.1rem);
    line-height: 0.92;
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
    line-height: 1;
  }

  p {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .button,
  button {
    width: auto;
    min-height: 44px;
    padding: 0.72rem 1rem;
    border-radius: 12px;
    line-height: 1.2;
  }

  .admin-order-price-row,
  .customer-order-price-list div,
  .admin-order-pricing-total,
  .customer-order-total {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-order-price-row {
    grid-template-columns: 1fr;
  }

  .admin-order-price-row input {
    text-align: left;
  }

  .actions,
  .form-actions,
  .auth-actions,
  .delivery-actions,
  .delivery-links,
  .guarantee-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    width: 100%;
  }

  .actions .button,
  .form-actions > *,
  .auth-actions > *,
  .delivery-actions > *,
  .delivery-links > *,
  .guarantee-actions > * {
    width: 100%;
    flex: initial;
  }

  .panel,
  .form-card,
  .info-card,
  .price-card,
  .gallery-card {
    padding: 1.1rem;
    border-radius: 18px;
  }

  .home-hero {
    min-height: auto;
    padding: 1.2rem 0 1.4rem;
  }

  .home-copy {
    max-width: none;
    padding: 2.1rem 0 1.4rem;
  }

  .home-lead {
    font-size: 1rem;
  }

  .home-trust-badge {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0.9rem;
    border-radius: 16px;
  }

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

  .about-camera-showcase {
    gap: 0.45rem;
    padding: 0.45rem;
  }

  .about-camera-tile {
    min-height: 120px;
    border-radius: 12px;
  }

  .drone-icon {
    width: 2.6rem;
    height: 2.6rem;
  }

  .home-bottom {
    gap: 1rem;
    padding: 1rem 0 0.5rem;
  }

  .hero-copy,
  .guarantee-hero {
    padding: 1.25rem;
    border-radius: 22px;
  }

  .founder-card {
    padding: 0.75rem;
    border-radius: 22px;
  }

  .founder-photo-wrap {
    width: min(100%, 300px);
    justify-self: center;
  }

  .promise-banner {
    grid-template-columns: 1fr;
    padding: 1.1rem;
    border-radius: 20px;
  }

  .promise-banner svg {
    width: 58px;
  }

  .service-price-card,
  .addon-panel,
  .addon-row,
  .offering-content,
  .service-chip,
  .service-chip-wide {
    display: grid;
    grid-template-columns: 1fr;
  }

  .offering-row-addon .offering-content {
    grid-template-columns: 1fr;
  }

  .offering-row-addon .offering-price {
    justify-self: start;
    width: auto;
  }

  .service-editor-actions {
    display: grid;
    justify-content: stretch;
  }

  .service-editor-summary {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .service-editor-summary .status,
  .service-summary-price {
    justify-self: start;
  }

  .service-editor-actions .button,
  .service-editor-actions button,
  .admin-access-actions .button,
  .admin-access-actions button {
    width: 100%;
  }

  .admin-order-summary {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .admin-order-summary .status {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .service-chip {
    align-items: flex-start;
    padding: 0.85rem;
  }

  .service-chip span {
    white-space: normal;
  }

  .service-selector {
    padding: 0.75rem;
    border-radius: 14px;
  }

  .offering-row {
    padding: 0.8rem;
    border-radius: 14px;
  }

  .checkbox-row {
    gap: 0.65rem;
  }

  .checkbox-row input {
    flex: 0 0 auto;
  }

  .offering-price,
  .price-card-price,
  .addon-price {
    justify-self: stretch;
    width: 100%;
    min-width: 0;
    padding: 0.6rem 0.75rem;
    border-radius: 12px;
    text-align: left;
  }

  .addon-panel {
    padding: 0.9rem;
  }

  .portal-shell,
  .portal-shell-wide,
  .account-settings-grid,
  .auth-layout {
    gap: 0.9rem;
  }

  .auth-card,
  .auth-card-wide {
    max-width: none;
  }

  .auth-brand {
    margin-bottom: 0.85rem;
  }

  .auth-copy,
  .auth-note {
    display: none;
  }

  .order-card {
    padding: 0.95rem;
  }

  .order-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 0.8rem 0;
  }

  .order-row.customer-order-summary {
    grid-template-columns: 1fr auto;
  }

  .order-row.customer-order-summary > div {
    grid-column: 1 / -1;
  }

  .customer-order-summary-meta {
    grid-template-columns: auto auto;
    justify-content: flex-start;
  }

  .customer-order-summary-meta .status {
    min-width: 0;
  }

  .status {
    justify-self: start;
  }

  .order-stepper {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .order-step-indicator {
    padding: 0.7rem;
  }

  .order-step-panel-head {
    display: grid;
  }

  .order-step-total {
    width: 100%;
    justify-content: flex-start;
  }

  .month-calendar {
    gap: 0.6rem;
  }

  .month-calendar-head,
  .month-calendar-grid {
    gap: 0.32rem;
  }

  .month-calendar-head {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .month-calendar-head div {
    padding: 0.15rem 0;
    text-align: center;
  }

  .month-day {
    min-height: 62px;
    gap: 0.28rem;
    padding: 0.45rem 0.25rem;
    border-radius: 12px;
    text-align: center;
  }

  .month-day-number {
    font-size: 0.95rem;
  }

  .month-day-badge {
    justify-self: center;
    padding: 0.12rem 0.34rem;
    font-size: 0.52rem;
    letter-spacing: 0.04em;
  }

  .schedule-selection,
  .schedule-callout,
  .schedule-option {
    border-radius: 14px;
  }

  .schedule-option {
    padding: 0.85rem;
  }

  .examples-grid {
    gap: 1rem;
  }

  .example-feature {
    min-height: 0;
    border-radius: 20px;
  }

  .gallery-example-card .example-overlay,
  .example-overlay {
    padding: 0.95rem;
  }

  .delivery-gallery {
    gap: 1.1rem;
    padding: 0.5rem 0 1.5rem;
  }

  .delivery-title h1 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .photo-frame {
    min-height: 190px;
    border-radius: 10px;
  }

  .gallery-review-panel {
    padding: 1rem;
    border-radius: 18px;
  }

  .footer {
    padding-bottom: 1.5rem;
  }
}

@media (max-width: 460px) {
  .site-shell,
  .home-page .site-shell,
  .gallery-page .site-shell {
    width: min(100% - 0.75rem, var(--max));
  }

  .topbar {
    padding-top: 0.7rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text strong {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
  }

  .brand-text small {
    display: none;
  }

  .nav {
    width: calc(100vw - 0.75rem);
    max-width: calc(100vw - 0.75rem);
    font-size: 0.66rem;
  }

  .nav a {
    padding: 0.32rem 0;
  }

  .panel,
  .form-card,
  .info-card,
  .price-card,
  .gallery-card,
  .hero-copy,
  .guarantee-hero {
    padding: 0.95rem;
  }

  .page-intro h1,
  .guarantee-copy h1,
  .home-copy h1,
  h1 {
    font-size: clamp(2.25rem, 15vw, 3.35rem);
  }

  .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  input,
  select,
  textarea {
    padding: 0.78rem 0.85rem;
    border-radius: 12px;
  }

  textarea {
    min-height: 112px;
  }

  .month-day {
    min-height: 54px;
    border-radius: 10px;
  }

  .month-day-badge {
    display: none;
  }

  .schedule-option-title {
    font-size: 0.98rem;
  }
}
