/* ═══════════════════════════════════════════════════════
   CYNTHIA CONTINI CONSULTING — Design System
   Premium one-page booking site
   ═══════════════════════════════════════════════════════ */

/* ─── Custom Properties ─── */
:root {
  /* Colors */
  --gold:        #C8A96E;
  --gold-light:  #D4AF37;
  --gold-subtle: rgba(200, 169, 110, 0.12);
  --gold-glow:   rgba(200, 169, 110, 0.25);
  --dark:        #1A1A1A;
  --dark-deep:   #111111;
  --dark-card:   #232323;
  --cream:       #FAF8F5;
  --white:       #FFFFFF;
  --bordeaux:    #6B2737;
  --bordeaux-soft: rgba(107, 39, 55, 0.15);
  --text:        #2D2D2D;
  --text-light:  #6B6B6B;
  --text-on-dark: #E0DDD8;
  --border:      #E8E4DF;
  --error:       #C0392B;
  --success:     #27AE60;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 8rem;

  /* Sizing */
  --container: 1200px;
  --radius:    8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.4s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.7;
  color: var(--text);
  background-color: var(--cream);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

ul {
  list-style: none;
}

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

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background: var(--gold);
  color: var(--white);
}

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--dark {
  background: var(--dark);
  color: var(--text-on-dark);
}

.section--cream {
  background: var(--cream);
}

/* ─── Section Headers ─── */
.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: 2.5rem;
}

.section__label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.section__label--light {
  color: var(--gold-light);
}

.section__label--light::before {
  background: var(--gold-light);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: var(--space-sm);
}

.section__title--light {
  color: var(--white);
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
}

.section__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__header .section__label {
  padding-left: 0;
}

.section__header .section__label::before {
  display: none;
}

.section__header .section__subtitle {
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s var(--ease);
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

.navbar__logo-img {
  height: 90px;
  width: auto;
  display: block;
  transition: all var(--duration) var(--ease);
}

.navbar.scrolled .navbar__logo-img {
  height: 60px;
}

.navbar__logo:hover .navbar__logo-img {
  opacity: 0.85;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--duration) var(--ease);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--duration) var(--ease-out);
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--white);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar__link--cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.navbar__link--cta::after {
  display: none;
}

.navbar__link--cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Hamburger */
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 4px;
}

.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

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

.navbar__burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  overflow: hidden;
  padding: 6rem 0 4rem;
}

/* Gradient background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 60%, rgba(107, 39, 55, 0.2) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(200, 169, 110, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(200, 169, 110, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Noise texture overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Decorative elements */
.hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, 0.08);
}

.hero__circle--1 {
  width: clamp(300px, 40vw, 600px);
  height: clamp(300px, 40vw, 600px);
  top: 10%;
  right: -5%;
  animation: floatSlow 20s ease-in-out infinite;
}

.hero__circle--2 {
  width: clamp(200px, 25vw, 400px);
  height: clamp(200px, 25vw, 400px);
  bottom: 15%;
  left: -3%;
  animation: floatSlow 25s ease-in-out infinite reverse;
}

.hero__line {
  position: absolute;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.06;
}

.hero__line--1 {
  width: 1px;
  height: 40%;
  top: 10%;
  left: 20%;
  animation: fadeInLine 2s ease-out 0.5s both;
}

.hero__line--2 {
  width: 1px;
  height: 30%;
  bottom: 5%;
  right: 25%;
  animation: fadeInLine 2s ease-out 1s both;
}

.hero__line--3 {
  width: 30%;
  height: 1px;
  top: 35%;
  right: 10%;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  animation: fadeInLine 2s ease-out 1.5s both;
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}

.hero__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: var(--space-md);
  position: relative;
  padding: 0 2rem;
}

.hero__badge::before,
.hero__badge::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 1.2rem;
  height: 1px;
  background: var(--gold);
}

.hero__badge::before { left: 0; }
.hero__badge::after  { right: 0; }

.hero__title {
  font-family: var(--font-display);
  line-height: 1.05;
  margin-bottom: var(--space-md);
}

.hero__title-name {
  display: block;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.hero__title-consulting {
  display: block;
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-top: 0.1em;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto var(--space-md);
  line-height: 1.8;
}

.hero__free {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-subtle);
  border: 1px solid rgba(200, 169, 110, 0.3);
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  margin-bottom: var(--space-md);
}

.hero__free svg {
  color: var(--gold-light);
}

.hero__free sup {
  font-size: 0.65em;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--dark);
}

.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 169, 110, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

.btn--full:hover {
  transform: translateY(-1px);
}

.btn__loading {
  display: none;
  animation: spin 1s linear infinite;
}

.btn.loading .btn__text { display: none; }
.btn.loading .btn__loading { display: inline-flex; }

/* ═══════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════ */
.about {
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about__image-wrapper {
  position: relative;
}

.about__image-frame {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  z-index: 1;
}

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



.about__image-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: 0.4;
}

.about__text {
  margin-bottom: var(--space-md);
}

.about__text p {
  margin-bottom: 1rem;
  color: var(--text);
}

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

.about__text strong {
  color: var(--dark);
  font-weight: 600;
}

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

.about__value {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--cream);
  border-radius: var(--radius);
  flex: 1;
  min-width: 160px;
}

.about__value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--gold-subtle);
  color: var(--gold);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.about__value strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

.about__value span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ═══════════════════════════════════════════════════════
   KEY NUMBERS
   ═══════════════════════════════════════════════════════ */
.numbers {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.numbers__item {
  padding: 1rem;
  position: relative;
}

.numbers__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(200, 169, 110, 0.2);
}

.numbers__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: inline;
}

.numbers__suffix {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--gold);
  vertical-align: super;
  line-height: 1;
}

.numbers__label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-on-dark);
  margin-top: 0.5rem;
  opacity: 0.8;
}

/* ═══════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════ */
.services {
  background: var(--cream);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--duration) var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--gold);
}

.service-card__accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, transparent 50%, var(--gold-subtle) 50%);
  transition: all var(--duration) var(--ease);
}

.service-card:hover .service-card__accent {
  background: linear-gradient(135deg, transparent 50%, var(--gold-glow) 50%);
}

.service-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bordeaux);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  z-index: 1;
}

.service-card--featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(200, 169, 110, 0.04) 0%, var(--white) 100%);
  grid-column: span 2;
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--gold-subtle);
  color: var(--gold);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  transition: all var(--duration) var(--ease);
}

.service-card:hover .service-card__icon {
  background: var(--gold);
  color: var(--dark);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

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

.service-card__duration {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-light);
}

.service-card__duration svg {
  color: var(--gold);
}

.service-card__cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: color var(--duration) var(--ease), gap var(--duration) var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.service-card__cta:hover {
  color: var(--gold-light);
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--duration) var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 0.5rem;
  right: 1.5rem;
}

.testimonial-card__stars {
  display: flex;
  gap: 0.15rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.testimonial-card__text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-subtle);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-card__name {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ═══════════════════════════════════════════════════════
   BOOKING
   ═══════════════════════════════════════════════════════ */
.booking {
  background: var(--white);
}

.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.booking__free-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-subtle), rgba(200, 169, 110, 0.2));
  border: 1px solid rgba(200, 169, 110, 0.3);
  color: var(--dark);
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.booking__free-badge svg {
  color: var(--gold);
}

.booking__free-badge sup {
  font-size: 0.65em;
}

.booking__desc {
  color: var(--text-light);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.booking__benefits {
  margin-bottom: var(--space-md);
}

.booking__benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text);
}

.booking__benefits svg {
  color: var(--success);
  flex-shrink: 0;
}

.booking__hours {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.booking__hours h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

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

.booking__hours-grid div {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 0.35rem 0;
}

.booking__hours-grid strong {
  color: var(--dark);
  font-weight: 600;
}

.booking__hours-grid span {
  color: var(--text-light);
}

/* Booking widget (Cal.com + fallback) */
.booking__widget-wrapper {
  position: relative;
}

.booking-widget {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--border);
}

.booking-widget--hidden {
  display: none;
}

.booking-widget__calendar {
  width: 100%;
  min-height: 500px;
  overflow: auto;
}

/* Fallback header */
.booking-widget__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.booking-widget__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--gold-subtle);
  color: var(--gold);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
}

.booking-widget__header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.booking-widget__header p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Service items list */
.booking-widget__services {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.booking-widget__service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  color: inherit;
}

.booking-widget__service-item:hover {
  border-color: var(--gold);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.booking-widget__service-item--free {
  background: linear-gradient(135deg, rgba(200, 169, 110, 0.06), rgba(200, 169, 110, 0.12));
  border-color: rgba(200, 169, 110, 0.3);
}

.booking-widget__service-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.booking-widget__service-info svg {
  color: var(--gold);
  margin-bottom: 0.1rem;
}

.booking-widget__service-item--free .booking-widget__service-info {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.booking-widget__service-info strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.booking-widget__service-info span {
  font-size: 0.78rem;
  color: var(--text-light);
}

.booking-widget__service-price {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
}

.booking-widget__service-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

/* Alternative contact */
.booking-widget__alt {
  text-align: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

.booking-widget__alt p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.booking-widget__alt-links {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn--outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--border);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--duration) var(--ease);
}

.btn--outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

/* Footer / payment info */
.booking-widget__footer {
  text-align: center;
}

.booking-widget__payment-info {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-light);
}

.booking-widget__payment-info svg {
  color: var(--success);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   MOCK BOOKING WIDGET
   ═══════════════════════════════════════════════════════ */
.booking-mock {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--border);
}

.booking-mock__step {
  display: none;
}

.booking-mock__step--active {
  display: block;
  animation: mockFadeIn 0.3s ease;
}

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

.booking-mock__step-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.booking-mock__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.booking-mock__step-header h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
}

.booking-mock__back {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-light);
  transition: all var(--duration) var(--ease);
}

.booking-mock__back:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.booking-mock__services {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.booking-mock__service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-align: left;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
}

.booking-mock__service:hover {
  border-color: var(--gold);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.booking-mock__service--free {
  background: linear-gradient(135deg, rgba(200, 169, 110, 0.06), rgba(200, 169, 110, 0.12));
  border-color: rgba(200, 169, 110, 0.3);
}

.booking-mock__service-left {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.booking-mock__service--free .booking-mock__service-left {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.booking-mock__service-left strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.booking-mock__service-left span {
  font-size: 0.78rem;
  color: var(--text-light);
}

.booking-mock__service-left svg {
  color: var(--gold);
}

.booking-mock__price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}

.booking-mock__price--free {
  color: var(--success);
}

.booking-mock__selected-service,
.booking-mock__selected-date {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold-subtle);
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.booking-mock__calendar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.booking-mock__cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.booking-mock__cal-month {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
}

.booking-mock__cal-nav {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-light);
  transition: all var(--duration) var(--ease);
}

.booking-mock__cal-nav:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.booking-mock__cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.booking-mock__cal-day-name {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0;
}

.booking-mock__cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

.booking-mock__cal-cell {
  text-align: center;
  padding: 0.5rem 0.25rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  cursor: default;
  color: var(--text-lighter);
  transition: all var(--duration) var(--ease);
  border: none;
  background: none;
  font-family: inherit;
}

.booking-mock__cal-cell--available {
  color: var(--dark);
  font-weight: 500;
  cursor: pointer;
}

.booking-mock__cal-cell--available:hover {
  background: var(--gold-subtle);
  color: var(--gold-dark);
}

.booking-mock__cal-cell--selected {
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
}

.booking-mock__cal-cell--past {
  color: var(--border);
}

.booking-mock__slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.booking-mock__slot {
  padding: 0.75rem;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  background: var(--white);
  font-family: inherit;
}

.booking-mock__slot:hover {
  border-color: var(--gold);
  background: var(--gold-subtle);
}

.booking-mock__slot--selected {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  font-weight: 700;
}

.booking-mock__summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.booking-mock__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.booking-mock__summary-row:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.booking-mock__summary-row span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.booking-mock__summary-row strong {
  font-size: 0.9rem;
  color: var(--dark);
}

.booking-mock__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.booking-mock__input {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--duration) var(--ease);
  width: 100%;
  box-sizing: border-box;
}

.booking-mock__input:focus {
  outline: none;
  border-color: var(--gold);
}

.booking-mock__confirm {
  margin-top: 0.5rem;
  width: 100%;
  justify-content: center;
}

.booking-mock__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.booking-mock__footer svg {
  color: var(--success);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   PARTNERS
   ═══════════════════════════════════════════════════════ */
.partners {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: var(--space-lg);
}

.partner-card {
  text-align: center;
  padding: 2rem 1.25rem;
  border: 1px solid rgba(200, 169, 110, 0.15);
  border-radius: var(--radius-lg);
  transition: all var(--duration) var(--ease);
  background: rgba(255, 255, 255, 0.03);
}

.partner-card:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 110, 0.05);
  transform: translateY(-3px);
}

.partner-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(200, 169, 110, 0.1);
  color: var(--gold);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.partner-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.partner-card p {
  font-size: 0.82rem;
  color: var(--text-on-dark);
  opacity: 0.7;
  line-height: 1.6;
}

/* Social links */
.partners__social {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(200, 169, 110, 0.1);
}

.partners__social p {
  font-size: 0.9rem;
  color: var(--text-on-dark);
  opacity: 0.7;
  margin-bottom: 1.25rem;
}

.partners__social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200, 169, 110, 0.25);
  border-radius: 50%;
  color: var(--gold);
  transition: all var(--duration) var(--ease);
}

.social-link:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  background: var(--dark-deep);
  color: var(--text-on-dark);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: var(--space-lg);
}

.footer__brand {
  text-align: center;
}

.footer__logo {
  margin-bottom: 1.25rem;
}

.footer__logo-img {
  height: 140px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--text-on-dark);
  opacity: 0.7;
  margin: 0 auto 1rem;
  max-width: 300px;
}

.footer__location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gold);
}

.footer__contact h4,
.footer__nav h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
}

.footer__contact svg {
  color: var(--gold);
  flex-shrink: 0;
}

.footer__contact a:hover {
  color: var(--gold);
}

.footer__nav li {
  margin-bottom: 0.6rem;
}

.footer__nav a {
  font-size: 0.88rem;
  color: var(--text-on-dark);
  opacity: 0.7;
  transition: all var(--duration) var(--ease);
}

.footer__nav a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: var(--text-on-dark);
  opacity: 0.5;
}

.footer__credit strong {
  color: var(--gold);
  font-weight: 600;
}

.footer__legal-link {
  color: inherit;
  opacity: 0.8;
  transition: opacity var(--duration) var(--ease);
}

.footer__legal-link:hover {
  opacity: 1;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════ */

/* Float */
@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15px, -20px); }
}

/* Fade in line */
@keyframes fadeInLine {
  from { opacity: 0; }
  to   { opacity: 0.06; }
}

/* Scroll pulse */
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50%      { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* Spinner */
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Reveal animations */
.reveal,
.reveal-left,
.reveal-right,
.reveal-up {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal {
  transform: translateY(30px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-up {
  transform: translateY(40px);
  transition-delay: calc(var(--delay, 0) * 0.1s);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ═══════════════════════════════════════════════════════
   MOBILE RESPONSIVE
   ═══════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

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

  .service-card--featured {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

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

  .testimonials__grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .booking__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

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

/* Mobile */
@media (max-width: 768px) {
  .navbar__burger {
    display: flex;
  }

  .navbar__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    z-index: 999;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .navbar__nav.open {
    transform: translateX(0);
  }

  .navbar__links {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .navbar__link {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .navbar__link::after {
    display: none;
  }

  .navbar__link--cta {
    text-align: center;
    margin-top: 1rem;
    border-bottom: none;
  }

  .hide-mobile {
    display: none;
  }

  .numbers__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .numbers__item:not(:last-child)::after {
    display: none;
  }

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

  .service-card--featured {
    grid-column: auto;
    max-width: none;
  }

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

  .testimonials__grid .testimonial-card:last-child {
    max-width: none;
  }

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

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

  .partner-card {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 1rem;
    padding: 1.25rem;
  }

  .partner-card__icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .footer__contact li {
    justify-content: center;
  }

  .footer__contact a {
    word-break: break-all;
  }

  .footer__nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 1.25rem;
  }

  .footer__nav li {
    margin-bottom: 0;
  }

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

/* Small mobile */
@media (max-width: 480px) {
  .hero__title-name {
    font-size: 2.5rem;
  }

  .hero__title-consulting {
    font-size: 1.3rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .about__values {
    flex-direction: column;
  }

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

/* 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;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-up {
    opacity: 1;
    transform: none;
  }
}

/* Print styles */
@media print {
  .navbar,
  .hero__decor,
  .hero__scroll,
  .btn,
  .booking-form {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }
}
