/* ============================================
   Красимира Колева — Психотерапевт
   Modern 2026 Editorial Website Stylesheet
   ============================================ */

/* --- 1. CSS Variables --- */
:root {
  --navy: #1a2744;
  --cream: #c9a96e;
  --cream-bg: #f5f0e8;
  --white: #ffffff;
  --text: #1a2744;
  --text-muted: #8a8f96;
  --text-light: #ffffff;
  --border: rgba(26, 39, 68, 0.15);
  --border-light: rgba(255, 255, 255, 0.2);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-height: 80px;
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- 2. Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--cream-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- 3. Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 8vw, 7rem);
}

h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
}

p {
  font-size: 1.125rem;
  line-height: 1.8;
}

.text-small {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.text-caption {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

/* Text mask reveal helper */
.text-mask {
  overflow: hidden;
  display: block;
}

.text-mask > span {
  display: block;
  transform: translateY(110%);
}

/* Section backgrounds */
.bg-cream {
  background-color: var(--cream-bg);
}

.bg-white {
  background-color: var(--white);
}

.bg-navy {
  background-color: var(--navy);
  color: var(--white);
}

/* --- 5. Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  transition: background-color 0.5s var(--transition), backdrop-filter 0.5s var(--transition);
}

.nav--scrolled {
  background-color: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(12px);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1002;
}

.nav__logo-mark {
  width: 40px;
  height: 40px;
  position: relative;
}

.nav__logo-mark svg {
  width: 100%;
  height: 100%;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.nav__logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.7vw, 2rem);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav__links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding: 4px 0;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--navy);
  transition: width 0.4s var(--transition);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__lang {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 4px;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.nav__lang:hover,
.nav__lang.active {
  opacity: 1;
}

/* --- 6. Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.4s var(--transition);
  cursor: pointer;
}

.btn--outline {
  border: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--outline-light {
  border: 1px solid var(--white);
  color: var(--white);
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--navy);
}

.btn--filled {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
}

.btn--filled:hover {
  background: transparent;
  color: var(--navy);
}

.btn--cream {
  background: var(--cream);
  color: var(--navy);
  border: 1px solid var(--cream);
}

.btn--cream:hover {
  background: transparent;
  color: var(--cream);
}

/* --- 7. Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-height) + 4vh) 6vw 6vh;
  position: relative;
  z-index: 2;
}

.hero__label {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero__title {
  margin-bottom: 2rem;
  max-width: 14ch;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  max-width: 45ch;
  margin-bottom: 3rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero__image {
  flex: 1;
  position: relative;
  min-height: 50vh;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* Decorative vertical line in hero */
.hero__line {
  position: absolute;
  left: 3vw;
  top: 20vh;
  width: 1px;
  height: 0;
  background: var(--cream);
  opacity: 0.4;
}

/* Large background watermark text */
.watermark {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 18rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(26, 39, 68, 0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

/* --- 8. Section Spacing --- */
.section {
  padding: 12vh 0;
  position: relative;
}

.section--tight {
  padding: 8vh 0;
}

.section--full {
  padding: 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.section__header {
  padding: 0 6vw;
  margin-bottom: 6vh;
}

.section__title {
  margin-bottom: 1.5rem;
}

.section__subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 55ch;
}

/* --- 9. Services Grid (Visual) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 100vh;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
  cursor: pointer;
  border: 5px solid #f5f0e8;
}

.service-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--transition);
}

.service-card:hover .service-card__image {
  transform: scale(1.08);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 39, 68, 0.85) 0%, rgba(26, 39, 68, 0.3) 50%, transparent 100%);
  transition: background 0.6s var(--transition);
}

.service-card:hover .service-card__overlay {
  background: linear-gradient(to top, rgba(26, 39, 68, 0.95) 0%, rgba(26, 39, 68, 0.5) 60%, rgba(26, 39, 68, 0.2) 100%);
}

.service-card__num {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cream);
  font-style: italic;
  margin-bottom: 1rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s var(--transition) 0.1s;
}

.service-card:hover .service-card__num {
  transform: translateY(0);
  opacity: 1;
}

.service-card__title {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-card__desc {
  position: relative;
  z-index: 2;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 45ch;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s var(--transition) 0.15s;
}

.service-card:hover .service-card__desc {
  transform: translateY(0);
  opacity: 1;
}

.service-card__arrow {
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
  color: var(--cream);
  margin-top: 1.5rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s var(--transition) 0.2s;
}

.service-card:hover .service-card__arrow {
  transform: translateY(0);
  opacity: 1;
}

/* Services bands (alternative for mobile) */
.services-band {
  border-top: 1px solid var(--border);
}

.services-band:last-child {
  border-bottom: 1px solid var(--border);
}

.service-band {
  display: grid;
  grid-template-columns: 80px 1fr 2fr auto;
  align-items: center;
  padding: 3vh 6vw;
  gap: 2vw;
  cursor: pointer;
  transition: background-color 0.4s var(--transition), padding-left 0.4s var(--transition);
  position: relative;
}

.service-band::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--cream);
  transform: scaleY(0);
  transition: transform 0.4s var(--transition);
}

.service-band:hover {
  background-color: rgba(26, 39, 68, 0.03);
  padding-left: calc(6vw + 8px);
}

.service-band:hover::before {
  transform: scaleY(1);
}

.service-band__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  font-style: italic;
}

.service-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.service-band__desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-band__arrow {
  font-size: 1.5rem;
  color: var(--cream);
  transition: transform 0.3s var(--transition);
}

.service-band:hover .service-band__arrow {
  transform: translateX(8px);
}

/* --- 10. Split Layout --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.split__image {
  position: relative;
  overflow: hidden;
}

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

.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vh 6vw;
}

/* --- 11. Process Steps --- */
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.process-step:first-child {
  border-top: 1px solid var(--border);
}

.process-step__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--cream);
  line-height: 1;
  min-width: 60px;
}

.process-step__text h4 {
  margin-bottom: 0.5rem;
}

.process-step__text p {
  font-size: 1rem;
  color: var(--text-muted);
}

/* --- 12. Quote Section --- */
.quote-section {
  padding: 16vh 6vw;
  text-align: center;
}

.quote-section__text {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  line-height: 1.3;
  max-width: 20ch;
  margin: 0 auto 3rem;
}

/* --- 13. FAQ --- */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 6vw;
  cursor: pointer;
  transition: padding-left 0.3s var(--transition);
}

.faq-item__question:hover {
  padding-left: calc(6vw + 12px);
}

.faq-item__question h3 {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 400;
  padding-right: 2rem;
}

.faq-item__icon {
  font-size: 1.5rem;
  color: var(--cream);
  transition: transform 0.4s var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--transition), padding 0.5s var(--transition);
}

.faq-item.open .faq-item__answer {
  max-height: 500px;
  padding: 0 6vw 2.5rem;
}

.faq-item__answer p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 70ch;
  line-height: 1.8;
}

/* --- 14. Testimonials Editorial --- */
.testimonial-block {
  padding: 10vh 6vw;
  border-bottom: 1px solid var(--border);
}

.testimonial-block:first-child {
  border-top: 1px solid var(--border);
}

.testimonial-block__quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.4;
  max-width: 35ch;
  margin-bottom: 2rem;
}

.testimonial-block__author {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- 15. Blog cards (image + meta, always visible) --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 3vw, 3.25rem);
  padding: 0 6vw;
}

.blog-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.blog-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  margin-bottom: 1.6rem;
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--transition);
}

.blog-card:hover .blog-card__image {
  transform: scale(1.06);
}

/* navy wash — unifies the imagery tonally and adds depth */
.blog-card__media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top,
    rgba(26, 39, 68, 0.42) 0%,
    rgba(26, 39, 68, 0.12) 55%,
    rgba(26, 39, 68, 0.04) 100%);
  pointer-events: none;
}

/* thin gold frame that fades in on hover */
.blog-card__media::after {
  z-index: 2;
  content: '';
  position: absolute;
  inset: 0.85rem;
  border: 1px solid rgba(245, 240, 232, 0.55);
  opacity: 0;
  transition: opacity 0.5s var(--transition);
  pointer-events: none;
}

.blog-card:hover .blog-card__media::after {
  opacity: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-card__cat {
  color: var(--cream);
}

.blog-card__sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
}

.blog-card__date {
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.blog-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 1.9vw, 1.7rem);
  line-height: 1.32;
  color: var(--text);
  transition: color 0.35s var(--transition);
}

.blog-card:hover .blog-card__title {
  color: var(--cream);
}

/* --- 15b. Blog article (single post) --- */
.article {
  position: relative;
  /* clip (not hidden) so the sticky sidebar isn't trapped in a scroll container */
  overflow: clip;
}

.article-body {
  max-width: 70ch;
  margin: 0 auto;
  padding: 0 6vw;
}

.article-lead {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 2.5rem;
}

.article-body p {
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
}

.article-body h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 2.05rem);
  line-height: 1.3;
  color: var(--text);
  margin: 3.5rem 0 1.5rem;
}

/* highlighted "point" — the author's 📍/marker lines */
.article-point {
  position: relative;
  padding: 1.4rem 1.6rem 1.4rem 2rem;
  margin: 1.75rem 0;
  background: var(--cream-bg);
  border-left: 2px solid var(--cream);
}

.article-point p {
  margin-bottom: 0.6rem;
}

.article-point p:last-child {
  margin-bottom: 0;
}

.article-point__lead {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--text);
}

/* a quiet emphasis line — the ✨ truths the author lands on */
.article-note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  line-height: 1.5;
  color: var(--text);
  text-align: center;
  max-width: 28ch;
  margin: 3rem auto;
}

.article-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  line-height: 1.5;
  color: var(--cream-dark, #b08d57);
  text-align: center;
  margin: 2.5rem auto;
  max-width: 36ch;
}

.article-sign {
  display: block;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 39, 68, 0.1);
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text);
}

.article-sign span {
  display: block;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 3rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s var(--transition);
}

.article-back:hover {
  color: var(--cream);
}

/* article + sidebar layout */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(280px, 24vw, 340px);
  gap: clamp(2.5rem, 5vw, 5rem);
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 6vw;
  align-items: start;
}

/* inside the grid the body fills its column, not a centered measure */
.article-layout .article-body {
  max-width: 64ch;
  margin: 0;
  padding: 0;
}

.article-aside {
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.aside-card {
  border: 1px solid var(--border);
  padding: 1.85rem 1.75rem;
}

.aside-card__label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.4rem;
}

.aside-meta {
  list-style: none;
  margin: 0;
  padding: 0;
}

.aside-meta li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--border);
}

.aside-meta li:first-child {
  padding-top: 0;
  border-top: none;
}

.aside-meta li:last-child {
  padding-bottom: 0;
}

.aside-meta__key {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.aside-meta__val {
  font-size: 1rem;
  color: var(--text);
}

/* booking call-to-action card */
.aside-cta {
  background: var(--navy);
  padding: 2.25rem 1.85rem;
  text-align: center;
}

.aside-cta__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.45rem;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 0.85rem;
}

.aside-cta__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.75rem;
}

.aside-cta .btn {
  width: 100%;
}

@media (max-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr;
    max-width: 70ch;
  }

  .article-aside {
    position: static;
    top: auto;
    margin-top: 1rem;
  }
}

/* --- 16. Contact Form --- */
.form-group {
  margin-bottom: 2.5rem;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  outline: none;
  transition: border-color 0.4s var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: var(--cream);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* --- 17. Booking Panel --- */
.booking-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 39, 68, 0.4);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--transition), visibility 0.4s;
}

.booking-overlay.active {
  opacity: 1;
  visibility: visible;
}

.booking-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 480px;
  max-width: 100%;
  height: 100vh;
  background: var(--cream-bg);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.5s var(--transition);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.booking-panel.active {
  transform: translateX(0);
}

.booking-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2.5rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--cream-bg);
  z-index: 10;
}

.booking-panel__header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.booking-panel__close {
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: color 0.3s;
  line-height: 1;
}

.booking-panel__close:hover {
  color: var(--navy);
}

.booking-panel__body {
  padding: 2.5rem;
  flex: 1;
}

.booking-panel__success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2.5rem;
  flex: 1;
}

.booking-panel__success.active {
  display: flex;
}

.booking-panel__success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.booking-panel__success p {
  color: var(--text-muted);
  max-width: 35ch;
}

/* --- 18. Footer --- */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 10vh 6vw 6vh;
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 8vh;
}

.footer__logo {
  width: 120px;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  max-width: 30ch;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3vh;
  border-top: 1px solid var(--border-light);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__links {
  display: flex;
  gap: 2rem;
}

.footer__links a {
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--cream);
}

/* --- 19. Mobile Menu --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream-bg);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--cream);
}

.mobile-menu__lang {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2.5rem;
}

/* Keep the language toggles small inside the large-typography mobile menu. */
.mobile-menu__lang a.nav__lang {
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 1002;
  cursor: pointer;
  padding: 10px;
}

.nav__burger span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--navy);
  transition: all 0.3s var(--transition);
}

.nav__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__burger.active span:nth-child(2) {
  opacity: 0;
}

.nav__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- 20. Animations --- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Reveal states for JS */
.reveal {
  opacity: 0;
  transform: translateY(60px);
}

.reveal--left {
  opacity: 0;
  transform: translateX(-60px);
}

.reveal--right {
  opacity: 0;
  transform: translateX(60px);
}

.reveal--scale {
  opacity: 0;
  transform: scale(0.95);
}

/* --- 21. Responsive --- */
/* Nav collapses to the burger menu below 1280px — 7 items need the room */
@media (max-width: 1280px) {
  .nav__links {
    display: none;
  }

  /* Booking button + language toggles move into the burger menu */
  .nav__right {
    display: none;
  }

  .nav__burger {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
  }

  .hero__image {
    min-height: 50vh;
    order: -1;
  }

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

  .split__image {
    min-height: 50vh;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card__num,
  .service-card__desc,
  .service-card__arrow {
    transform: translateY(0);
    opacity: 1;
  }

  .service-band {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
  }

  .service-band__desc,
  .service-band__arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .section {
    padding: 8vh 0;
  }

  .hero__content {
    padding: calc(var(--nav-height) + 3vh) 6vw 4vh;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .booking-panel {
    width: 100%;
  }

  /* On phones the wordmark is dropped — the badge alone is the logo */
  .nav__logo-text {
    display: none;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem 1.5rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============================================
   22. ENHANCEMENTS — logo, light lines & frames,
       philosophy pillars, FAQ layout, carousel
   ============================================ */

/* --- Real logo --- */
.nav__logo-mark {
  width: 48px;
  height: 48px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav__logo-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer__logo {
  width: 230px;
  max-width: 64vw;
  height: auto;
  margin-bottom: 2.25rem;
  opacity: 0.96;
}

/* --- Soft light lines that flow from sections --- */
.flow-line {
  position: absolute;
  width: 1px;
  pointer-events: none;
  z-index: 1;
  transform-origin: top center;
  transform: scaleY(0);
  background: linear-gradient(to bottom,
    transparent,
    var(--cream) 22%,
    var(--cream) 78%,
    transparent);
  box-shadow: 0 0 7px rgba(201, 169, 110, 0.45);
}

.flow-line--enter {
  top: 0;
  left: 50%;
  margin-left: -0.5px;
  height: clamp(52px, 9vh, 104px);
  opacity: 0.6;
}

/* --- Soft light frame that draws itself in --- */
.light-frame {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
  filter: drop-shadow(0 0 3px rgba(201, 169, 110, 0.35));
}

.light-frame rect {
  fill: none;
  stroke: var(--cream);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  opacity: 0.65;
}

/* --- Hero image light frame --- */
.hero__image .light-frame {
  top: clamp(1rem, 2vw, 2rem);
  left: clamp(1rem, 2vw, 2rem);
  width: calc(100% - 2 * clamp(1rem, 2vw, 2rem));
  height: calc(100% - 2 * clamp(1rem, 2vw, 2rem));
  z-index: 2;
}

.hero__image .light-frame rect {
  stroke: var(--white);
  opacity: 0.55;
}

/* --- Philosophy section (reworked) --- */
.quote-section .light-frame {
  top: clamp(2.5rem, 5vh, 4.5rem);
  left: clamp(1.75rem, 5vw, 5rem);
  width: calc(100% - 2 * clamp(1.75rem, 5vw, 5rem));
  height: calc(100% - 2 * clamp(2.5rem, 5vh, 4.5rem));
}

.testimonial-carousel .light-frame {
  inset: 0;
  width: 100%;
  height: 100%;
}

.quote-section__inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
}

.quote-section__inner .text-caption {
  margin-bottom: 2rem;
}

.quote-section__lead {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2.75rem;
}

.quote-pillars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1.4rem;
  margin-bottom: 3rem;
}

.quote-pillars__word {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.65rem, 4vw, 3.4rem);
  line-height: 1.15;
  color: var(--white);
}

.quote-pillars__word:nth-child(3) {
  color: var(--cream);
  font-style: italic;
}

.quote-pillars__sep {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  background: var(--cream);
  transform: rotate(45deg) scale(1);
  box-shadow: 0 0 8px rgba(201, 169, 110, 0.5);
}

.quote-section__note {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 48ch;
  margin: 0 auto;
}

/* --- FAQ — better positioned (two-column editorial) --- */
.faq-section .faq-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2.5rem, 5vw, 6rem);
  padding: 0 6vw;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--nav-height) + 4vh);
}

.faq-intro .text-caption {
  margin-bottom: 1.25rem;
}

.faq-intro .section__subtitle {
  margin-top: 1.5rem;
}

.faq-intro__cta {
  margin-top: 2.5rem;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list .faq-item__question {
  padding: 1.75rem 0;
}

.faq-list .faq-item__question:hover {
  padding-left: 12px;
}

.faq-list .faq-item.open .faq-item__answer {
  padding: 0 0 1.85rem;
}

.faq-list .faq-item__answer p {
  max-width: none;
}

/* --- Testimonials — sleek carousel --- */
.testimonial-carousel {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(3rem, 6.5vw, 5.5rem) clamp(1.75rem, 6vw, 5.5rem);
}

.testimonial-carousel__viewport {
  overflow: hidden;
}

.testimonial-carousel__track {
  display: flex;
  align-items: stretch;
  transition: transform 0.75s var(--transition);
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  opacity: 0.25;
  transition: opacity 0.75s var(--transition);
}

.testimonial-slide.is-active {
  opacity: 1;
}

.testimonial-slide__mark {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  height: 2rem;
  color: var(--cream);
  margin-bottom: 1.75rem;
}

.testimonial-slide__quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.7vw, 2.3rem);
  line-height: 1.45;
  max-width: 32ch;
  margin: 0 auto 2rem;
}

.testimonial-slide__author {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.testimonial-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  line-height: 1;
  transition: background-color 0.4s var(--transition),
              color 0.4s var(--transition),
              border-color 0.4s var(--transition);
}

.carousel-arrow:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border-radius: 50%;
  background: var(--border);
  transition: background-color 0.4s var(--transition),
              width 0.4s var(--transition),
              border-radius 0.4s var(--transition);
}

.carousel-dot.active {
  background: var(--cream);
  width: 26px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .faq-section .faq-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 768px) {
  .quote-pillars {
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 2.5rem;
  }

  .quote-pillars__word {
    font-size: clamp(1.5rem, 6.4vw, 2.1rem);
  }

  .quote-section__lead {
    margin-bottom: 2rem;
  }

  .quote-section__note {
    font-size: 0.98rem;
  }

  .footer__logo {
    width: 200px;
  }
}

/* ============================================
   23. INTERIOR PAGES — page hero, about, contact
   ============================================ */

/* --- Active navigation state --- */
.nav__links a.active {
  color: var(--navy);
}

.nav__links a.active::after {
  width: 100%;
  background-color: var(--cream);
}

.mobile-menu a.active,
.footer__links a.active {
  color: var(--cream);
}

/* --- Page hero (interior page header) --- */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-height) + 9vh) 6vw 9vh;
  overflow: hidden;
}

/* Content sits above the decorative line/watermark; those keep
   their own absolute positioning so they don't inflate the header. */
.page-hero__caption,
.page-hero__title,
.page-hero__subtitle {
  position: relative;
  z-index: 2;
}

.page-hero__caption {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.75rem;
}

.page-hero__title {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  max-width: 18ch;
  margin-bottom: 1.75rem;
}

.page-hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 54ch;
  line-height: 1.7;
}

/* --- About — values grid --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 0 6vw;
}

.value-card {
  background: var(--cream-bg);
  padding: clamp(2.5rem, 4vw, 3.75rem) clamp(1.75rem, 2.5vw, 2.75rem);
}

.value-card__index {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.value-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  margin-bottom: 1rem;
}

.value-card__text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Contact page --- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(2.5rem, 6vw, 7rem);
  padding: 0 6vw;
  align-items: start;
}

.contact-info__item {
  padding: 1.65rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-info__item:first-child {
  border-top: 1px solid var(--border);
}

.contact-info__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}

.contact-info__value {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.4;
}

.contact-info__value a {
  transition: color 0.3s var(--transition);
}

.contact-info__value a:hover {
  color: var(--cream);
}

.contact-form__success {
  display: none;
  border: 1px solid var(--border);
  padding: 2.5rem;
}

.contact-form__success.active {
  display: block;
}

.contact-form__success h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.contact-form__success p {
  color: var(--text-muted);
}

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

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* --- Light frame inside split images (interior pages) --- */
.split__image .light-frame {
  top: clamp(1rem, 2vw, 2rem);
  left: clamp(1rem, 2vw, 2rem);
  width: calc(100% - 2 * clamp(1rem, 2vw, 2rem));
  height: calc(100% - 2 * clamp(1rem, 2vw, 2rem));
  z-index: 2;
}

.split__image .light-frame rect {
  stroke: var(--white);
  opacity: 0.5;
}

/* --- Homepage invite CTA ("Готов ли си да започнеш?") --- */
.cta-invite {
  position: relative;
  overflow: hidden;
  padding: clamp(11vh, 14vh, 17vh) 6vw;
  text-align: center;
}

.cta-invite__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cta-invite::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 90%, rgba(201, 169, 110, 0.13), transparent 46%),
    radial-gradient(ellipse 80% 70% at 50% 42%, rgba(26, 39, 68, 0.5) 0%, rgba(26, 39, 68, 0.93) 80%);
}

.cta-invite .flow-line,
.cta-invite .light-frame {
  z-index: 2;
}

.cta-invite .light-frame {
  top: clamp(2rem, 4.5vh, 4rem);
  left: clamp(1.5rem, 4.5vw, 4.5rem);
  width: calc(100% - 2 * clamp(1.5rem, 4.5vw, 4.5rem));
  height: calc(100% - 2 * clamp(2rem, 4.5vh, 4rem));
}

.cta-invite__inner {
  position: relative;
  z-index: 3;
  max-width: 720px;
  margin: 0 auto;
}

.cta-invite__inner .text-caption {
  margin-bottom: 1.5rem;
}

.cta-invite__title {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--white);
  font-size: clamp(2.5rem, 6.4vw, 5.25rem);
  line-height: 1.12;
  margin-bottom: 1.85rem;
}

.cta-invite__title em {
  font-style: italic;
  color: var(--cream);
}

.cta-invite__text {
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.125rem;
  line-height: 1.75;
  max-width: 48ch;
  margin: 0 auto 2.75rem;
}

.cta-invite__actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Service detail pages --- */
.service-aside {
  margin: 2.25rem 0 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.service-aside__label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
}

.service-aside p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.aside-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.aside-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  color: var(--text-muted);
}

.aside-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  background: var(--cream);
  transform: rotate(45deg);
}

.suit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 clamp(2rem, 5vw, 5rem);
  padding: 0 6vw;
  border-top: 1px solid var(--border);
}

.suit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.05rem;
}

.suit-item__mark {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  background: var(--cream);
  transform: rotate(45deg);
}

.price-tag {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.price-tag__amount {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
}

.price-tag__unit {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.related-list {
  border-top: 1px solid var(--border);
}

.related-list .service-band {
  border-bottom: 1px solid var(--border);
}

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

/* Anchor offset so #services lands below the fixed nav */
#services {
  scroll-margin-top: var(--nav-height);
}

/* ===================================================================
 * Superstitious Appointment Calendar — brand restyle of the plugin form.
 * Applied via the shared .kt-appt wrapper (off-canvas booking panel + the
 * Контакти page). Keeps the brand aesthetic (underline inputs, uppercase
 * labels, navy submit) over the plugin's default markup.
 * =================================================================== */
.booking-panel__body { overflow-y: auto; }

.kt-appt .superstitious-appointment-form-container {
  margin: 0;
  padding: 0;
  background: transparent;
  max-width: 100%;
}
.kt-appt .superstitious-appointment-form .form-row-group {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0;
  flex-wrap: wrap;
  align-items: flex-start;
}
.kt-appt .superstitious-appointment-form .form-row {
  margin-bottom: 2.25rem;
  flex: 1 1 100%;
}
.kt-appt .superstitious-appointment-form .form-row.half-width {
  flex: 1 1 calc(50% - 0.75rem);
  max-width: none;
  margin-bottom: 2.25rem;
}
.kt-appt .superstitious-appointment-form .form-row.full-width {
  width: 100%;
  flex: none;
}
.kt-appt .superstitious-appointment-form label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-weight: 400;
}
.kt-appt .superstitious-appointment-form label .required { color: var(--cream); }

.kt-appt .superstitious-appointment-form input[type="text"],
.kt-appt .superstitious-appointment-form input[type="email"],
.kt-appt .superstitious-appointment-form input[type="tel"],
.kt-appt .superstitious-appointment-form select,
.kt-appt .superstitious-appointment-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 0.75rem 0;
  outline: none;
  box-shadow: none;
  transition: border-color 0.4s var(--transition);
  max-width: 100%;
}
.kt-appt .superstitious-appointment-form input:focus,
.kt-appt .superstitious-appointment-form select:focus,
.kt-appt .superstitious-appointment-form textarea:focus {
  border-bottom-color: var(--cream);
  box-shadow: none;
}
.kt-appt .superstitious-appointment-form textarea { min-height: 90px; resize: vertical; }

/* Company / position aren't relevant for therapy bookings — hide that row. */
.kt-appt .superstitious-appointment-form .business-fields { display: none; }

.kt-appt .superstitious-appointment-form .submit-button {
  float: none;
  width: 100%;
  margin: 0.5rem 0 0;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 1.1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.4s var(--transition), color 0.4s var(--transition);
}
.kt-appt .superstitious-appointment-form .submit-button:hover { background: var(--cream); color: var(--navy); }
.kt-appt .superstitious-appointment-form .submit-button:disabled { opacity: 0.6; cursor: not-allowed; }

.kt-appt .appointment-message {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}
.kt-appt .appointment-message.success {
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid var(--cream);
  color: var(--navy);
}
.kt-appt .appointment-message.error {
  background: #fdf3f3;
  border: 1px solid #e7b3b3;
  color: #7a2b2b;
}

/* The datepicker popup must sit above the off-canvas panel (z-index 2000+). */
.ui-datepicker { z-index: 2200 !important; }
.ui-datepicker .ui-datepicker-header { background: var(--navy); border: none; color: #fff; border-radius: 0; }
.ui-datepicker .ui-datepicker-title { color: #fff; }
.ui-datepicker .ui-state-default { border: 1px solid var(--border); background: #fff; color: var(--text); text-align: center; }
.ui-datepicker .ui-state-active,
.ui-datepicker .ui-state-hover { background: var(--cream); border-color: var(--cream); color: var(--navy); }
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next { cursor: pointer; }
