:root {
  --ink: #102018;
  --ink-soft: #2a3d32;
  --fog: #e7eee8;
  --fog-deep: #d5e0d7;
  --paper: #f3f6f2;
  --brass: #8b5f9a;
  --brass-bright: #a078b0;
  --mist: rgba(16, 32, 24, 0.08);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --max: 68rem;
  --header-h: 6.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(139, 95, 154, 0.14), transparent 55%),
    linear-gradient(180deg, var(--fog) 0%, var(--paper) 42%, #eef3ef 100%);
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.5rem 0.75rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(243, 246, 242, 0.82);
  border-bottom: 1px solid var(--mist);
  overflow: visible;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  overflow: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-mark {
  /* 13.5rem visual (+50% from 9rem); negative margin keeps header height */
  width: 13.5rem;
  height: 13.5rem;
  margin: -3.75rem;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 2.025rem; /* +50% from 1.35rem */
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--brass);
}

.brand-text em {
  font-style: italic;
  font-weight: 500;
  margin-left: 0.35rem;
  color: var(--brass-bright);
}

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

.site-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-booking-link {
  color: var(--forest);
  font-weight: 600;
}

.nav-booking-link:hover {
  color: var(--brass);
}

.nav-blog-link {
  position: relative;
}

.nav-blog-bubble {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.45rem);
  transform: translateX(-50%) translateY(4px);
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.4rem;
  border-radius: 999px;
  background: var(--brass);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.35rem;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(16, 32, 24, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-blog-bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--brass);
}

.nav-blog-link:hover .nav-blog-bubble,
.nav-blog-link:focus-visible .nav-blog-bubble {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 0.3rem auto;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:first-of-type {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-of-type {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #f5f8f4;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(12, 28, 20, 0.35), transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.05'%3E%3Cpath d='M0 80h160M80 0v160'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(ellipse at 70% 20%, #3d5a48 0%, transparent 45%),
    linear-gradient(165deg, #1a3326 0%, #0c1a14 48%, #152820 100%);
  background-size: cover, 80px 80px, cover, cover;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 18, 14, 0.25) 0%, rgba(8, 18, 14, 0.55) 55%, rgba(8, 18, 14, 0.88) 100%);
}

/* Homepage hero — mandala banner; HTML text left */
.page-home {
  background:
    radial-gradient(ellipse 70% 45% at 90% 0%, rgba(120, 70, 160, 0.12), transparent 55%),
    linear-gradient(180deg, #eef6f8 0%, #f3eef8 45%, #ebe4f2 100%);
}

.page-home .site-header {
  background: rgba(238, 246, 248, 0.9);
  border-bottom-color: rgba(58, 120, 130, 0.12);
}

.hero--agency {
  color: #3d2a52;
  align-items: center;
  min-height: clamp(28rem, 70vh, 40rem);
}

.hero--agency .hero-media {
  animation: none;
  transform: none;
  background:
    linear-gradient(90deg, rgba(238, 246, 248, 0.88) 0%, rgba(238, 246, 248, 0.45) 34%, rgba(238, 246, 248, 0.08) 52%, transparent 64%),
    url("../img/hero-home.d4668bc15aba.jpg") right bottom / cover no-repeat,
    linear-gradient(90deg, #3d8f9a 0%, #6a8fae 42%, #8f78b0 100%);
}

.hero--agency .hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.45rem;
  max-width: min(34rem, 52vw);
  margin: 0;
  margin-right: auto;
  margin-left: clamp(0.5rem, 2.5vw, 1.5rem);
  padding: 3.5rem 1.25rem 3rem 0.85rem;
  padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
  justify-items: start;
  justify-self: start;
  width: auto;
  box-sizing: border-box;
}

.hero.hero--agency .brand-hero {
  margin: 0;
  font-family: "Montserrat", var(--font-body), sans-serif;
  font-size: clamp(2rem, 4.8vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: #3a2850;
  text-shadow: none;
}

.hero.hero--agency h1 {
  margin: 0;
  max-width: none;
  font-family: "Montserrat", var(--font-body), sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: #4a3a62;
  text-shadow: none;
}

.hero.hero--agency .lede {
  margin: 0.5rem 0 0;
  max-width: 30rem;
  font-family: "Montserrat", var(--font-body), sans-serif;
  font-size: clamp(0.92rem, 1.35vw, 1.08rem);
  font-weight: 500;
  line-height: 1.55;
  color: #1f5f66;
  text-shadow: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 4.5rem 1.25rem 3.5rem;
  animation: rise-in 0.9s ease both;
}

.brand-hero {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 0.95;
}

.hero h1 {
  margin: 0 0 0.9rem;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.45rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.15;
  color: rgba(245, 248, 244, 0.92);
}

.lede {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  font-size: 1.05rem;
  color: rgba(245, 248, 244, 0.78);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 1.2rem;
  border-radius: 0.2rem;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--brass-bright);
  color: #f7f1f8;
}

.btn-primary:hover {
  background: #b089be;
  color: #fff;
}

.btn-ghost {
  border: 1px solid rgba(245, 248, 244, 0.45);
  color: #f5f8f4;
}

.btn-ghost:hover {
  border-color: #f5f8f4;
}

.btn-sm {
  min-height: 2.35rem;
  padding: 0.5rem 0.95rem;
  font-size: 0.88rem;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
}

.section-head {
  margin-bottom: 2rem;
  max-width: 36rem;
}

.section-head h1,
.section-head h2,
.book-page h1,
.page-hero h1 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.section-head h1,
.book-page h1,
.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
}

.author-list,
.title-list,
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.author-row {
  border-top: 1px solid rgba(16, 32, 24, 0.12);
  opacity: 0;
  transform: translateY(12px);
  animation: rise-in 0.65s ease forwards;
  animation-delay: calc(var(--i, 0) * 70ms + 80ms);
}

.author-row:last-child {
  border-bottom: 1px solid rgba(16, 32, 24, 0.12);
}

.author-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.1rem;
  align-items: center;
  padding: 1.15rem 0.15rem;
  text-decoration: none;
}

.author-link:hover .author-arrow {
  transform: translateX(4px);
  color: var(--brass);
}

.author-photo {
  width: 4.5rem;
  height: 4.5rem;
  overflow: hidden;
  border-radius: 50%;
  background: var(--fog-deep);
}

.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink-soft);
  background: linear-gradient(145deg, #dbe5dc, #c5d2c6);
}

.photo-fallback.large {
  font-size: 4rem;
  min-height: 16rem;
}

.author-meta h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
}

.author-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin: 0.15rem 0 0.35rem !important;
  align-items: baseline;
}

.author-genre {
  font-size: 0.75rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass) !important;
  font-weight: 600;
}

.author-phrase {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem !important;
  color: var(--ink-soft) !important;
}

.author-count {
  margin: 0 !important;
}

.author-meta p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.author-arrow {
  font-size: 1.25rem;
  color: var(--ink-soft);
  transition: transform 0.2s ease, color 0.2s ease;
}

.page-hero {
  padding: 3rem 1.25rem 1rem;
}

.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.75rem;
}

.author-bio-row {
  grid-template-columns: minmax(10rem, 16rem) minmax(0, 1fr);
  align-items: start;
}

.author-bio-copy {
  min-width: 0;
}

.author-agent-note {
  max-width: var(--max);
  margin: 1.75rem auto 0;
  padding: 0 0 0.5rem;
}

.author-hero-photo {
  width: min(100%, 18rem);
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--fog-deep);
}

.author-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-block {
  display: grid;
  grid-template-columns: minmax(9rem, 14rem) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
  margin-bottom: 2.25rem;
  max-width: min(56rem, 100%);
}

.founder-photo {
  overflow: hidden;
  background: var(--fog-deep);
  aspect-ratio: 3 / 4;
}

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

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

.blog-feed {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.blog-card {
  border: 1px solid rgba(16, 32, 24, 0.12);
  background: #fffef9;
}

.blog-card-link {
  display: grid;
  gap: 0;
  text-decoration: none;
  color: inherit;
}

.blog-card-image {
  width: 100%;
  max-height: 16rem;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.blog-card-body time {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}

.blog-card-body h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.blog-post-page time {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}

.blog-post-image {
  display: block;
  width: 100%;
  max-height: 28rem;
  object-fit: cover;
  margin: 1rem 0 1.5rem;
}

.blog-post-body {
  max-width: 42rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}

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

.prose {
  color: var(--ink-soft);
}

.prose p:first-child {
  margin-top: 0;
}

.title-link {
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(16, 32, 24, 0.12);
  text-decoration: none;
}

.title-list li:last-child .title-link {
  border-bottom: 1px solid rgba(16, 32, 24, 0.12);
}

.title-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
}

.title-author {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.title-series {
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}

.title-meta {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.title-genre {
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}

.title-hook {
  color: var(--ink-soft);
  max-width: 40rem;
}

.title-endorsements {
  display: grid;
  gap: 0.55rem;
  max-width: 40rem;
  margin-top: 0.2rem;
}

.title-endorsement {
  margin: 0;
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--brass);
  background: rgba(139, 95, 154, 0.09);
  border-radius: 0 4px 4px 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
}

.title-endorsement p {
  margin: 0;
}

.title-endorsement strong,
.title-endorsement b {
  font-weight: 600;
  font-style: normal;
}

.book-hook {
  margin: 0.75rem 0 2rem;
  max-width: 40rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--ink-soft);
}

.book-endorsements {
  margin: -1rem 0 1.75rem;
  max-width: 40rem;
}

.book-endorsements .title-endorsement {
  font-size: 1.15rem;
}

.book-title-1 {
  margin: 0;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  line-height: 1.3;
}

/* Fixed slot above the title so Previous/Next stay aligned across pages.
   Extra lines (series, etc.) grow upward within this slot. */
.title-stack {
  margin: 0 0 0.55rem;
}

.title-preamble {
  min-height: 3.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.3rem;
  margin: 0 0 0.45rem;
}

.title-preamble .eyebrow,
.title-preamble .book-title-1 {
  margin: 0;
}

.book-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin: 0;
}

.book-title-row h1 {
  margin: 0;
  flex: 1 1 12rem;
  min-width: 0;
  text-align: left;
}

.book-adj-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-left: auto;
}

.book-adj {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.55rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  border: 1px solid rgba(16, 32, 24, 0.18);
  background: transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

a.book-adj:hover {
  color: var(--brass);
  border-color: var(--brass);
}

button.book-adj-pitch {
  appearance: none;
  background: var(--ink-soft);
  color: #f5f8f4;
  border-color: var(--ink-soft);
  cursor: pointer;
  font: inherit;
}

button.book-adj-pitch:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: #1a1408;
}

button.book-adj-media {
  appearance: none;
  background: #4a6b8a;
  color: #f5f8f4;
  border-color: #4a6b8a;
  cursor: pointer;
  font: inherit;
}

button.book-adj-media:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: #1a1408;
}

button.book-adj-drawings {
  appearance: none;
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--ink-soft);
  cursor: pointer;
  font: inherit;
}

button.book-adj-drawings:hover {
  color: var(--brass);
  border-color: var(--brass);
}

button.book-adj-self-published {
  appearance: none;
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--ink-soft);
  cursor: pointer;
  font: inherit;
  max-width: 11rem;
  line-height: 1.25;
  white-space: normal;
  text-align: center;
}

button.book-adj-self-published:hover {
  color: var(--brass);
  border-color: var(--brass);
}

.wg-self-published-title {
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}

a.wg-self-published-title:hover {
  color: var(--brass);
  text-decoration: underline;
}

.wg-self-published-item figcaption {
  margin-top: 0.25rem;
}

.wg-self-published-grid {
  grid-template-columns: repeat(auto-fill, minmax(8.5rem, 1fr));
}

.wg-self-published-item .wg-drawing-thumb {
  background: #fff;
}

.wg-self-published-item .wg-drawing-thumb img {
  aspect-ratio: 2 / 3;
  object-fit: contain;
  object-position: center top;
  width: 100%;
  height: auto;
  max-height: none;
}

.wg-drawings-modal[hidden] { display: none !important; }
.wg-drawings-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wg-drawings-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 32, 24, 0.55);
}
.wg-drawings-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 94vw);
  max-height: min(90vh, 1000px);
  overflow: auto;
  background: #f7f4ee;
  border-radius: 2px;
  box-shadow: 0 16px 48px rgba(16, 32, 24, 0.28);
  padding: 1rem 1.15rem 1.35rem;
}
.wg-drawings-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.wg-drawings-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
}
.wg-drawings-close {
  appearance: none;
  border: 0;
  background: transparent;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
  padding: 0.15rem 0.4rem;
}
.wg-drawings-close:hover { color: var(--ink); }
.wg-drawings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
  gap: 1rem;
}
.wg-drawing-item {
  margin: 0;
}
.wg-drawing-thumb {
  appearance: none;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(16, 32, 24, 0.12);
  background: #fff;
  cursor: pointer;
  border-radius: 2px;
  overflow: hidden;
}
.wg-drawing-thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}
.wg-drawing-item figcaption {
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-align: center;
}

.book-adj-disabled {
  opacity: 0.35;
  cursor: default;
}

.book-adj-arrow {
  font-size: 1.05em;
  line-height: 1;
}

.wg-front-pitch-modal[hidden] { display: none !important; }
.wg-front-pitch-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wg-front-pitch-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 32, 24, 0.55);
}
.wg-front-pitch-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 94vw);
  height: min(92vh, 1100px);
  background: #f7f4ee;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.wg-pitch-body {
  flex: 1;
  overflow: auto;
  background: #f7f4ee;
}
.wg-pitch-loading {
  margin: 2rem;
  font-family: var(--font-body);
  color: var(--ink-soft);
}

.wg-pitch-gate[hidden] { display: none !important; }
.wg-pitch-gate {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wg-pitch-gate-dialog {
  position: relative;
  z-index: 1;
  width: min(28rem, 92vw);
  max-height: 92vh;
  overflow: auto;
  padding: 1.75rem 1.75rem 1.5rem;
  background: var(--paper);
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.wg-pitch-gate-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
}
.wg-pitch-gate-heading {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
}
.wg-pitch-gate-lead {
  margin: 0 0 1.1rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.wg-pitch-gate-form {
  display: grid;
  gap: 0.85rem;
}
.wg-pitch-gate-form .form-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.wg-pitch-gate-form .form-field label .req {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
  color: var(--brass);
}
.wg-pitch-gate-form input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--fog-deep);
  border-radius: 2px;
  padding: 0.55rem 0.65rem;
  font: inherit;
  background: #fff;
}
.wg-pitch-gate-form input:focus {
  outline: 2px solid rgba(42, 61, 50, 0.25);
  border-color: var(--forest);
}
.wg-pitch-gate-error {
  margin: 0;
  font-size: 0.9rem;
  color: #9b2c2c;
}
.wg-pitch-gate-success {
  margin: 0;
  font-size: 0.9rem;
  color: var(--forest);
}
.wg-pitch-gate-switch {
  margin: 1rem 0 0;
  font-size: 0.92rem;
}
.wg-pitch-gate-switch a {
  color: var(--forest);
}

.working-titles {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.about-title-1 {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}

.about-title-2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  margin: 0 0 1rem;
}

.social-link,
.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  font-weight: 500;
  color: var(--ink-soft);
}

.social-link:hover,
.linkedin-link:hover {
  color: var(--ink);
}

.social-icon,
.linkedin-icon {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 0.15rem;
  position: relative;
  flex-shrink: 0;
}

.social-icon::after,
.linkedin-icon::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  font-family: Arial, sans-serif;
  line-height: 1;
}

.social-icon--linkedin,
.linkedin-icon {
  background: #0a66c2;
}
.social-icon--linkedin::after,
.linkedin-icon::after {
  content: "in";
}

.social-icon--instagram {
  background: #c13584;
}
.social-icon--instagram::after {
  content: "IG";
  font-size: 0.5rem;
}

.social-icon--facebook {
  background: #1877f2;
}
.social-icon--facebook::after {
  content: "f";
  font-size: 0.75rem;
}

.social-icon--tiktok {
  background: #111;
}
.social-icon--tiktok::after {
  content: "Tk";
  font-size: 0.48rem;
}

.social-icon--x {
  background: #111;
}
.social-icon--x::after {
  content: "X";
  font-size: 0.7rem;
}

.social-icon--website {
  background: var(--ink-soft);
}
.social-icon--website::after {
  content: "W";
  font-size: 0.65rem;
}

.social-icon--blog {
  background: var(--brass);
}
.social-icon--blog::after {
  content: "B";
  font-size: 0.65rem;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1.1rem 1.5rem;
  margin: 0 0 2.5rem;
  padding: 0;
}

.spec-grid dt {
  margin: 0 0 0.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}

.spec-grid dd {
  margin: 0;
  color: var(--ink-soft);
}

.prose-block {
  margin-bottom: 2.25rem;
  max-width: 42rem;
}

.prose-block.has-aside {
  max-width: min(64rem, 100%);
}

.prose-block h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.synopsis-row {
  display: block;
}

.synopsis-block.has-aside .synopsis-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 1.15fr);
  gap: 1.5rem 2.5rem;
  align-items: start;
}

.synopsis-main {
  min-width: 0;
}

.synopsis-main .authors-note {
  margin-top: 1.75rem;
}

.synopsis-main .authors-note h2 {
  margin-top: 0;
}

.synopsis-aside {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1.15rem;
  min-width: 0;
  justify-self: stretch;
  width: 100%;
  max-width: none;
}

.synopsis-aside .cover-thumbs {
  order: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
  flex: 0 0 auto;
}

.synopsis-aside .cover-thumb {
  appearance: none;
  border: 1px solid rgba(16, 32, 24, 0.14);
  background: #fff;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 2px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--ink-soft);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  flex: 0 1 auto;
  min-width: 0;
  width: auto;
  max-width: 11rem;
}

.synopsis-aside .cover-thumb:hover {
  border-color: var(--brass);
  box-shadow: 0 4px 16px rgba(16, 32, 24, 0.08);
}

.synopsis-aside .cover-thumb img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 16rem;
  object-fit: contain;
  margin: 0 auto 0.35rem;
}

.synopsis-aside .cover-thumb--spine {
  max-width: 4.5rem;
}

.synopsis-aside .cover-thumb--spine img {
  max-height: 16rem;
}

.synopsis-aside .teaser {
  order: 2;
  margin: 0;
  width: 100%;
  max-width: none;
  flex: 0 0 auto;
  padding: 1rem 1.1rem;
  border: 1px solid #c4b59a;
  background: #f3ebe0;
  border-radius: 1px;
}

.teaser-label {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6a5a42;
}

.teaser-body {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #2a2218;
}

.teaser-body p {
  margin: 0 0 0.75rem;
}

.teaser-body p:last-child {
  margin-bottom: 0;
}

.cover-lightbox[hidden] {
  display: none !important;
}

.cover-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cover-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(10, 14, 12, 0.72);
}

.cover-lightbox-dialog {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 720px);
  max-height: 90vh;
  padding: 1.25rem;
  background: #fffef9;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cover-lightbox-close {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #102018;
  color: #f7f4ee;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}

.cover-lightbox-label {
  margin: 0 0 0.65rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.cover-lightbox-dialog img {
  max-width: 100%;
  max-height: calc(90vh - 4rem);
  object-fit: contain;
}

@media (max-width: 800px) {
  .synopsis-block.has-aside .synopsis-row {
    grid-template-columns: 1fr;
  }
}

.agent-note {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(16, 32, 24, 0.12);
}

.contact-list li {
  display: grid;
  gap: 0.35rem;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(16, 32, 24, 0.12);
}

.contact-list li:last-child {
  border-bottom: 1px solid rgba(16, 32, 24, 0.12);
}

.contact-list span {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}

.contact-list p {
  margin: 0;
  color: var(--ink-soft);
}

.contact-head {
  display: grid;
  gap: 0.75rem;
}

.contact-booking-aside-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.contact-booking-aside {
  padding: 1rem 1.15rem;
  max-width: 22rem;
  border: 1px solid var(--mist);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.65);
  display: grid;
  gap: 0.65rem;
}

.contact-booking-subtitle {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.contact-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.contact-booking-aside .btn-ghost {
  justify-self: start;
  border-color: var(--ink-soft);
  color: var(--forest);
}

.contact-booking-aside .btn-ghost:hover {
  border-color: var(--brass);
  color: var(--brass);
  background: rgba(255, 255, 255, 0.8);
}

.rights-content {
  max-width: 42rem;
}

.rights-content p:first-child {
  margin-top: 0;
}

.empty-state {
  color: var(--ink-soft);
  font-style: italic;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--mist);
  background: rgba(16, 32, 24, 0.04);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 2.5rem;
  display: grid;
  gap: 0.35rem;
}

.footer-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.footer-note {
  margin: 0.4rem 0 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.footer-bottom {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.55rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.footer-privacy {
  margin-left: auto;
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
}

.footer-privacy:hover {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.footer-credit {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--mist);
  font-size: 0.75rem;
  color: var(--ink-soft);
  text-align: center;
}

.footer-credit a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.footer-credit a:hover {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes mark-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@media (min-width: 800px) {
  .page-hero-inner.author-bio-row {
    grid-template-columns: minmax(10rem, 16rem) minmax(0, 1fr);
    align-items: start;
    gap: 2.5rem;
  }

  .author-hero {
    padding-top: 4rem;
  }
}

@media (max-width: 799px) {
  .author-bio-row,
  .founder-block {
    grid-template-columns: 1fr;
  }

  .author-hero-photo,
  .founder-photo {
    width: min(100%, 16rem);
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 1.25rem 1rem;
    background: rgba(243, 246, 242, 0.98);
    border-bottom: 1px solid var(--mist);
  }

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

  .site-nav a {
    width: 100%;
    padding: 0.7rem 0;
  }

  .nav-blog-bubble {
    left: auto;
    right: 0;
    bottom: 50%;
    transform: translateY(50%) translateX(4px);
  }

  .nav-blog-bubble::after {
    left: auto;
    right: 0.65rem;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--brass);
    border-top-color: transparent;
  }

  .nav-blog-link:hover .nav-blog-bubble,
  .nav-blog-link:focus-visible .nav-blog-bubble {
    transform: translateY(50%) translateX(0);
  }

  .hero-copy {
    padding-top: 5rem;
  }

  .hero--agency {
    align-items: center;
    min-height: clamp(28rem, 72vh, 40rem);
  }

  .hero--agency .hero-copy {
    padding: 3rem 1.15rem 3rem;
    max-width: min(34rem, 92vw);
    margin-left: 0.75rem;
  }

  .hero--agency .hero-media {
    background:
      linear-gradient(100deg, rgba(238, 246, 248, 0.9) 0%, rgba(238, 246, 248, 0.35) 50%, transparent 72%),
      url("../img/hero-home.d4668bc15aba.jpg") right bottom / cover no-repeat,
      #3d8f9a;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-accept {
    align-self: flex-end;
  }
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  padding: 0.85rem 1.15rem calc(0.85rem + env(safe-area-inset-bottom, 0));
  background: rgba(16, 32, 24, 0.94);
  color: #f3f6f2;
  border-top: 1px solid rgba(160, 120, 176, 0.35);
  box-shadow: 0 -8px 28px rgba(16, 32, 24, 0.18);
}

html.wg-cookies-accepted #wg-cookie-banner {
  display: none !important;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  gap: 1.25rem;
  align-items: flex-end;
}

.cookie-banner-text {
  flex: 1;
  min-width: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(243, 246, 242, 0.92);
  max-height: 9rem;
  overflow: auto;
}

.cookie-banner-link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.cookie-banner-link:hover {
  color: var(--brass-bright);
}

.cookie-banner-accept {
  flex-shrink: 0;
  appearance: none;
  border: 0;
  border-radius: 2px;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--brass);
  cursor: pointer;
}

.cookie-banner-accept:hover {
  background: var(--brass-bright);
}

.blog-byline {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink-soft);
}

.blog-byline a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.blog-author-cta {
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.author-register-page {
  max-width: 32rem;
}

.author-register-form {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.5rem;
}

.author-register-form .form-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.author-register-form input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--fog-deep);
  border-radius: 2px;
  padding: 0.7rem 0.85rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
}

.author-register-form input:focus {
  outline: 2px solid var(--brass);
  outline-offset: 1px;
}

.author-register-form .has-error input {
  border-color: #a33;
}

.author-register-form .field-errors,
.author-register-form .form-errors,
.form-messages {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #8a2a2a;
  font-size: 0.9rem;
}

.form-footnote {
  margin-top: 1.5rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.booking-promo-section {
  padding-top: 0;
}

.booking-promo-grid {
  display: grid;
  gap: 1rem;
}

.booking-promo-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--mist);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.72);
}

.booking-promo-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 600;
}

.booking-promo-subtitle {
  margin: 0.35rem 0 0;
  max-width: 36rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.booking-promo-meta {
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.booking-page {
  max-width: 40rem;
}

.booking-meta {
  margin: 0.25rem 0 0;
  color: var(--ink-soft);
}

.booking-deadline {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.booking-deadline strong {
  color: var(--ink);
  font-weight: 600;
}

.booking-event-deadline,
.booking-promo-deadline,
.contact-booking-deadline {
  display: block;
  margin-top: 0.35rem;
}

.booking-promo-deadline {
  font-size: 0.88rem;
}

.contact-booking-deadline {
  font-size: 0.82rem;
  margin-bottom: 0.65rem;
}

.booking-intro {
  margin-top: 1rem;
}

.booking-event-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.booking-event-card {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--mist);
  border-radius: 2px;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.55);
}

.booking-event-card:hover {
  border-color: var(--brass);
}

.booking-event-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.booking-event-subtitle {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.booking-page-subtitle {
  margin: 0.35rem 0 0;
  max-width: 36rem;
}

.booking-event-location,
.booking-event-dates {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.booking-duration-picker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 1.5rem 0 1rem;
}

.booking-duration-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-right: 0.25rem;
}

.booking-duration-btn {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--ink-soft);
  border-radius: 2px;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--ink-soft);
}

.booking-duration-btn.is-active,
.booking-duration-btn:hover {
  border-color: var(--brass);
  color: var(--brass);
}

.booking-slots {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.booking-slots-heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.booking-slots-hint {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.booking-day-title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest);
}

.booking-slot-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.booking-slot-btn {
  appearance: none;
  border: 1px solid var(--mist);
  border-radius: 2px;
  padding: 0.45rem 0.7rem;
  background: #fff;
  font: inherit;
  font-size: 0.88rem;
  cursor: pointer;
  color: var(--ink);
}

.booking-slot-btn:hover,
.booking-slot-btn.is-selected {
  border-color: var(--brass);
  color: var(--brass);
}

.booking-slot-btn.is-unavailable {
  border-color: var(--mist);
  background: #f3f1ec;
  color: #b8b0a4;
  cursor: not-allowed;
  opacity: 0.85;
  text-decoration: line-through;
}

.booking-slot-btn.is-selected-span {
  background: rgba(181, 154, 88, 0.12);
}

.booking-slot-row .booking-slot-btn.is-selected + .booking-slot-btn.is-selected-span {
  margin-left: -0.15rem;
  border-left-color: var(--brass);
}

.booking-closed-notice {
  margin-top: 1.5rem;
}

.booking-form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--mist);
}

.booking-form .form-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.booking-form .form-field label .req {
  color: var(--brass);
}

.booking-input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--fog-deep);
  border-radius: 2px;
  padding: 0.55rem 0.65rem;
  font: inherit;
}

.booking-selected {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.booking-summary {
  margin: 1rem 0 1.5rem;
}

.booking-manage-link {
  font-size: 0.95rem;
}

.booking-action-fieldset {
  border: 0;
  margin: 0 0 1rem;
  padding: 0;
}

.booking-action-option {
  display: block;
  margin: 0.35rem 0;
  font-size: 0.95rem;
}

.booking-form .form-errors,
.booking-form .field-errors {
  color: #8a2a2a;
  font-size: 0.9rem;
}
