/* ==================================================
   STUDIO & CARE — Design System Web V1
   ================================================== */

:root {
  --background-primary: #F5F1EC;
  --background-secondary: #EDE6DE;
  --beige-soft: #D8CEC3;
  --gold-primary: #8A633C;
  --gold-dark: #684724;
  --text-primary: #1F1B18;
  --text-secondary: #70685F;
  --white: #FFFFFF;

  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;

  --container-max: 1200px;
  --section-padding: 120px;
  --section-padding-mobile: 72px;
  --gap-cards: 32px;
  --gap-mobile: 24px;

  --radius-btn: 999px;
  --radius-card: 24px;
  --radius-image: 32px;
  --radius-input: 16px;

  --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.10);

  --transition: all 0.35s ease;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-secondary);
  background-color: var(--background-primary);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

/* Typography */

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.625rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

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

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 16px;
}

.section-intro {
  max-width: 640px;
  margin-top: 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header--left {
  text-align: left;
  margin-bottom: 48px;
}

.section-header--left .section-intro {
  margin-left: 0;
}

/* Layout */

.container {
  width: calc(100% - 48px);
  max-width: var(--container-max);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-padding);
}

.section--alt {
  background-color: var(--background-secondary);
}

/* Components */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold-primary);
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius-btn);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}

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

.card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--gold-primary);
}

.card__title {
  margin-bottom: 12px;
}

.card__text {
  font-size: 1rem;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(245, 241, 236, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(216, 206, 195, 0.5);
  box-shadow: var(--shadow-light);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.site-header__logo img {
  height: 36px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav__link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  position: relative;
}

.site-nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  transition: var(--transition);
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--gold-primary);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
  width: 100%;
}

.site-nav__social img {
  width: 22px;
  height: 22px;
  opacity: 0.85;
  transition: var(--transition);
}

.site-nav__social:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: var(--transition);
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-height);
  overflow: hidden;
  background: #3f3934;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(183, 150, 109, 0.2), transparent 36%),
    linear-gradient(135deg, #37312d, #625950);
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(25, 22, 20, 0.72) 0%,
    rgba(31, 27, 24, 0.58) 55%,
    rgba(45, 39, 34, 0.52) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 780px;
  padding: 48px 24px;
}

.hero__content h1 {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.5);
}

.hero__content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--white);
  margin-bottom: 40px;
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--white);
}

.hero .btn-outline:hover {
  background: var(--white);
  color: var(--text-primary);
  border-color: var(--white);
}

/* Page hero (inner pages) */

.page-hero {
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 80px;
  background: var(--background-secondary);
}

.page-hero--image {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 64px;
  overflow: hidden;
}

.page-hero--image .page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero--image .page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero--image .page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(31, 27, 24, 0.55) 0%,
    rgba(31, 27, 24, 0.25) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.page-hero--image .page-hero__content h1 {
  color: var(--white);
}

.page-hero--image .page-hero__content p {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 16px;
}

/* Breadcrumb */

.breadcrumb {
  margin-bottom: 24px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
}

.breadcrumb li + li::before {
  content: '/';
  margin-right: 8px;
  color: var(--beige-soft);
}

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

.page-hero--image .breadcrumb,
.page-hero--image .breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
}

.page-hero--image .breadcrumb li[aria-current='page'] {
  color: var(--white);
}

/* Utilities */

.section-spacer {
  margin-top: 64px;
}

.service-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-cards);
}

.service-preview {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.service-preview__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-preview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-preview:hover .service-preview__image img {
  transform: scale(1.05);
}

.service-preview__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-preview__body h3 {
  margin-bottom: 12px;
}

.service-preview__body p {
  flex-grow: 1;
  margin-bottom: 24px;
  font-size: 0.9375rem;
}

.service-preview__link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.service-preview__link:hover {
  color: var(--gold-dark);
}

.cta-banner {
  background: var(--text-primary);
  color: rgba(255, 255, 255, 0.85);
  padding-block: 80px;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  max-width: 520px;
  margin: 0 auto 32px;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.cta-banner .btn-outline {
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--white);
}

.cta-banner .btn-outline:hover {
  background: var(--white);
  color: var(--text-primary);
  border-color: var(--white);
}

.section-note {
  text-align: center;
  margin-top: 48px;
  font-size: 0.9375rem;
}

.section-note a {
  color: var(--gold-primary);
}

.section-note a:hover {
  color: var(--gold-dark);
}


.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-grid__image {
  border-radius: var(--radius-image);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.about-grid__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-cards);
  margin-top: 64px;
}

.about-value {
  text-align: center;
  padding: 32px 24px;
}

.about-value__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 8px;
}

.about-value__label {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
}

/* Service sections (Pilates, Soins, Spa) */

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-block--reverse .service-block__media {
  order: 2;
}

.service-block--reverse .service-block__content {
  order: 1;
}

.service-block__media {
  border-radius: var(--radius-image);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.service-block__media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-block:hover .service-block__media img {
  transform: scale(1.03);
}

.service-block__content h2 {
  margin-bottom: 24px;
}

.service-block__content p + p {
  margin-top: 16px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px 0;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.service-feature::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-cards);
}

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

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: var(--gap-mobile);
}

.gallery-item {
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 27, 24, 0.5), transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__caption {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-cards);
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
}

.pricing-card--featured {
  border: 1px solid var(--gold-primary);
  transform: scale(1.02);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-primary);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-btn);
}

.pricing-card__category {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 8px;
}

.pricing-card__name {
  margin-bottom: 16px;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pricing-card__price span {
  font-size: 1rem;
  color: var(--text-secondary);
}

.pricing-card__desc {
  font-size: 0.9375rem;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-card__list {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-card__list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--beige-soft);
  font-size: 0.9375rem;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.pricing-card__list li span:last-child {
  color: var(--text-primary);
  font-weight: 500;
  white-space: nowrap;
}

/* Testimonials */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-cards);
}

.testimonial-card {
  position: relative;
}

.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--beige-soft);
  position: absolute;
  top: 16px;
  left: 24px;
}

.testimonial-card__text {
  position: relative;
  z-index: 1;
  font-style: italic;
  margin-bottom: 24px;
  padding-top: 32px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--background-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--gold-primary);
}

.testimonial-card__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}

.testimonial-card__service {
  font-size: 0.75rem;
  color: var(--gold-primary);
}

/* FAQ */

.faq-list {
  max-width: 760px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--beige-soft);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-primary);
  transition: var(--transition);
}

.faq-item__question:hover {
  color: var(--gold-primary);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--gold-primary);
  transition: var(--transition);
}

.faq-item__icon::before {
  top: 50%;
  left: 4px;
  right: 4px;
  height: 1px;
  transform: translateY(-50%);
}

.faq-item__icon::after {
  left: 50%;
  top: 4px;
  bottom: 4px;
  width: 1px;
  transform: translateX(-50%);
}

.faq-item.is-open .faq-item__icon::after {
  transform: translateX(-50%) scaleY(0);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.is-open .faq-item__answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-item__answer p {
  font-size: 1rem;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 860px;
  margin-inline: auto;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-info__item {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-light);
}

.contact-info__item h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 8px;
}

.contact-info__item p,
.contact-info__item a {
  color: var(--text-primary);
  font-size: 1rem;
}

.contact-info__item a:hover {
  color: var(--gold-primary);
}

.contact-form {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-light);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--beige-soft);
  border-radius: var(--radius-input);
  background: var(--background-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(183, 150, 109, 0.15);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Footer */

.site-footer {
  background: var(--text-primary);
  color: rgba(255, 255, 255, 0.7);
  padding-block: 80px 32px;
}

.site-footer h3,
.site-footer h4 {
  color: var(--white);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.site-footer__brand p {
  margin-top: 16px;
  font-size: 0.9375rem;
  max-width: 280px;
}

.site-footer__brand img {
  height: 32px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.site-footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.site-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__col a {
  font-size: 0.9375rem;
  transition: var(--transition);
}

.site-footer__col a:hover {
  color: var(--gold-primary);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
}

.site-footer__social {
  display: flex;
  gap: 16px;
}

.site-footer__social img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: var(--transition);
}

.site-footer__social a:hover img {
  opacity: 1;
}

/* Reveal animation */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Responsive */

/* ============================================
   CONTEST WHEEL
   ============================================ */
.contest-wheel-panel {
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(240px, 1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
  max-width: 1000px;
  margin: 72px auto 0;
  padding: clamp(32px, 5vw, 64px);
  background: var(--white);
  border: 1px solid rgba(183, 150, 109, 0.2);
  border-radius: var(--radius-image);
  box-shadow: var(--shadow-light);
}

.contest-wheel-stage {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1;
  margin-inline: auto;
  filter: drop-shadow(0 20px 35px rgba(31, 27, 24, 0.12));
}

.contest-wheel {
  position: absolute;
  inset: 3%;
  display: grid;
  place-items: center;
  border: 12px solid var(--white);
  border-radius: 50%;
  background: repeating-conic-gradient(
    from -15deg,
    var(--background-secondary) 0deg 30deg,
    var(--beige-soft) 30deg 60deg
  );
  box-shadow:
    0 0 0 2px var(--gold-primary),
    inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

.contest-wheel::after {
  content: '';
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(183, 150, 109, 0.35);
  border-radius: 50%;
}

.contest-wheel__center {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 30%;
  aspect-ratio: 1;
  padding: 10%;
  background: var(--background-primary);
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(31, 27, 24, 0.12);
}

.contest-wheel__center img {
  width: 100%;
  height: auto;
}

.contest-wheel-pointer {
  position: absolute;
  z-index: 3;
  top: -1%;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 42px solid var(--gold-dark);
  transform: translateX(-50%);
  filter: drop-shadow(0 4px 5px rgba(31, 27, 24, 0.18));
}

.contest-wheel-actions {
  text-align: center;
}

.contest-form {
  text-align: left;
}

.contest-form .form-group {
  margin-bottom: 16px;
}

.contest-check {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  margin: 12px 0;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.76rem;
  line-height: 1.55;
}

.contest-check input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--gold-primary);
}

.contest-form .contest-wheel-button {
  width: 100%;
  margin-top: 18px;
}

.contest-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contest-wheel.is-spinning {
  animation: contest-spin 1.8s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

@keyframes contest-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(1440deg); }
}

.contest-wheel-button {
  min-width: 200px;
}

.contest-wheel-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

.contest-wheel-status {
  margin: 18px 0 22px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contest-wheel-status[data-type='success'] { color: #376442; font-weight: 600; }
.contest-wheel-status[data-type='error'] { color: #9b3c33; font-weight: 600; }

.contest-qr-demo {
  width: min(100%, 260px);
  margin: 32px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--beige-soft);
}

.contest-qr-demo__label {
  margin-bottom: 14px;
  color: var(--text-primary);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contest-qr-demo img {
  display: block;
  width: 180px;
  height: 180px;
  margin: 0 auto;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--beige-soft);
  border-radius: var(--radius-input);
}

.contest-qr-demo__note {
  margin-top: 12px;
  color: var(--text-secondary);
  font-size: 0.72rem;
  line-height: 1.6;
}

/* Espace client */
.client-back-link,
.client-header__actions a,
.site-nav__client {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav__client {
  padding: 9px 12px;
  border: 1px solid var(--gold-primary);
  white-space: nowrap;
}

.site-nav__client:hover {
  color: var(--white);
  background: var(--gold-primary);
}

.client-auth-main {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: calc(var(--header-height) + 64px) 20px 64px;
  background: linear-gradient(135deg, var(--background-primary), var(--beige-light));
}

.client-auth-card {
  width: min(100%, 540px);
  padding: clamp(32px, 6vw, 64px);
  background: var(--white);
  border: 1px solid var(--beige-soft);
  border-radius: 4px;
  box-shadow: 0 24px 70px rgba(62, 48, 34, 0.1);
}

.client-auth-card h1 {
  margin: 8px 0 16px;
  font-size: clamp(2.5rem, 7vw, 4rem);
}

.client-auth-card__intro,
.client-auth-card__help,
.client-form-status,
.client-note {
  color: var(--text-secondary);
  line-height: 1.75;
}

.client-auth-form,
.client-code-panel {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.client-auth-form label,
.client-code-panel label {
  color: var(--text-primary);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-auth-form input,
.client-code-panel input {
  width: 100%;
  padding: 16px;
  color: var(--text-primary);
  background: var(--background-primary);
  border: 1px solid var(--beige-soft);
  border-radius: var(--radius-input);
  font: inherit;
}

.client-form-status {
  margin-top: 20px;
  padding: 14px 16px;
  background: var(--beige-light);
  font-size: 0.78rem;
}

.client-auth-card__help {
  margin-top: 20px;
  font-size: 0.78rem;
}

.client-code-panel[hidden] { display: none; }

.client-area { background: var(--background-primary); }

.client-header {
  background: var(--white);
  border-bottom: 1px solid var(--beige-soft);
}

.client-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

.client-header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.client-main { padding: 64px 0 100px; }

.client-welcome {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.client-welcome h1 { margin: 4px 0 8px; }
.client-welcome p { color: var(--text-secondary); }

.client-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 12px;
  overflow-x: auto;
  border-bottom: 1px solid var(--beige-soft);
}

.client-tabs a {
  flex: 0 0 auto;
  padding: 10px 16px;
  color: var(--text-secondary);
  font-size: 0.76rem;
  font-weight: 600;
}

.client-tabs a.is-active,
.client-tabs a:hover {
  color: var(--gold-dark);
  background: var(--beige-light);
}

.client-panel {
  margin-bottom: 24px;
  padding: clamp(28px, 5vw, 48px);
  background: var(--white);
  border: 1px solid var(--beige-soft);
}

.client-panel h2 { margin: 4px 0 24px; }

.client-empty {
  padding: 48px 24px;
  text-align: center;
  background: var(--background-primary);
}

.client-empty h3 { margin-bottom: 10px; }
.client-empty p { max-width: 650px; margin: 0 auto 24px; color: var(--text-secondary); line-height: 1.8; }
.client-empty--compact { padding: 28px; }
.client-empty--compact p { margin-bottom: 0; }

.client-metrics,
.client-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.client-metrics article,
.client-profile-grid div {
  display: grid;
  gap: 6px;
  padding: 24px;
  background: var(--background-primary);
}

.client-metrics strong {
  color: var(--gold-dark);
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 500;
}

.client-metrics span,
.client-profile-grid span {
  color: var(--text-secondary);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.client-profile-grid { grid-template-columns: repeat(3, 1fr); }
.client-profile-grid strong { font-size: 0.86rem; font-weight: 500; }
.client-note { margin-top: 18px; font-size: 0.78rem; }
.client-panel--highlight { background: var(--beige-light); }

/* Page de réservation — version lancement */
.booking-hero {
  background: linear-gradient(135deg, var(--background-primary), var(--beige-light));
}

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

.booking-card {
  position: relative;
  min-height: 390px;
  padding: clamp(34px, 5vw, 58px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--beige-soft);
  box-shadow: 0 18px 48px rgba(62, 48, 34, 0.08);
}

.booking-card__number {
  position: absolute;
  top: 20px;
  right: 28px;
  color: rgba(138, 99, 60, 0.13);
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
}

.booking-card h2 {
  margin: 18px 0 16px;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.booking-card p {
  max-width: 480px;
  margin-bottom: 34px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.booking-card__button.is-disabled {
  cursor: not-allowed;
  opacity: 0.55;
  pointer-events: none;
}

.booking-qr {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  margin-top: 48px;
  padding: clamp(30px, 5vw, 54px);
  color: var(--white);
  background: var(--text-primary);
}

.booking-qr h2 {
  margin: 8px 0 12px;
  color: var(--white);
}

.booking-qr p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.booking-qr img {
  width: 220px;
  height: 220px;
  padding: 12px;
  background: var(--white);
}

.booking-help {
  margin-top: 32px;
  color: var(--text-secondary);
  text-align: center;
}

.booking-help a {
  color: var(--gold-dark);
  font-weight: 600;
}

@media (max-width: 1024px) {
  :root {
    --section-padding: 88px;
  }

  .about-grid,
  .service-block,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contest-wheel-panel {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-block--reverse .service-block__media,
  .service-block--reverse .service-block__content {
    order: unset;
  }

  .about-values,
  .cards-grid,
  .pricing-grid,
  .testimonials-grid,
  .service-preview-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .gallery-item--large {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 280px;
  }

  .gallery-item {
    min-height: 200px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-card--featured {
    transform: none;
  }

  .site-header__inner {
    gap: 18px;
  }

  .site-header__logo img {
    height: 32px;
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav__list {
    gap: 16px;
  }

  .site-nav__link {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
  }
}

@media (max-width: 900px) {
  :root {
    --section-padding: var(--section-padding-mobile);
    --header-height: 72px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: flex-start;
    padding: 48px 24px;
    background: var(--background-primary);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    gap: 48px;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav__list {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .site-nav__link {
    font-size: 1rem;
  }

  .site-nav__client { font-size: 0.85rem; }

  .container {
    width: calc(100% - 32px);
  }

  .about-values,
  .cards-grid,
  .cards-grid--2,
  .pricing-grid,
  .testimonials-grid,
  .service-preview-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-item--large {
    grid-column: span 1;
  }

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

  .contact-form {
    padding: 32px 24px;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .hero__scroll {
    display: none;
  }

  .client-welcome {
    align-items: flex-start;
    flex-direction: column;
  }

  .client-metrics,
  .client-profile-grid {
    grid-template-columns: 1fr;
  }

  .booking-grid,
  .booking-qr {
    grid-template-columns: 1fr;
  }

  .booking-card { min-height: 0; }
  .booking-qr { text-align: center; }
  .booking-qr img { margin: 0 auto; }

  .client-header__actions span { display: none; }
}
