:root {
  --bg: #17120f;
  --panel: #221a15;
  --text: #f4e8da;
  --muted: #c5b29f;
  --gold: #cda56b;
  --line: #3a2d24;
  --font-body: "Inter", system-ui, sans-serif;
  --font-display: "Cinzel", Georgia, serif;
}

html,
body {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0.8rem;
}

a {
  color: inherit;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.site-header {
  position: relative;
  z-index: 50;
  background: linear-gradient(180deg, #b69a76, #9e7e5c);
  border-bottom: 1px solid rgba(59, 36, 24, 0.32);
  backdrop-filter: blur(6px);
  margin: 0;
  padding: 0.8rem 0;
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(277px, 1fr) 58px 132px;
  padding: 0.2rem 0;
  gap: 1rem;
  align-items: center;
  position: relative;
}

.header-inner .brand { justify-self: start; }
.header-inner > .language-dropdown { justify-self: end; }
.header-inner .desktop-book-btn {
  justify-self: end;
  width: 132px;
  padding-inline: 0.75rem;
  text-align: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #24170f;
}

.brand-logo {
  height: 62px;
  width: auto;
  border-radius: 0;
}

.desktop-book-btn { white-space: nowrap; }
.mobile-language-dropdown { display: none; }

.hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 12, 9, 0.85), rgba(16, 12, 9, 0.45));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 4rem 0;
}

.hero-home {
  min-height: 0;
  display: block;
  overflow: hidden;
  background: #050403;
}

.hero-cta-band {
  min-height: clamp(10rem, 16vw, 13rem);
  display: flex;
  align-items: center;
  padding: 0;
  background: linear-gradient(180deg, #b69a76, #9e7e5c);
}

.hero-action-card {
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
  justify-items: center;
  padding: clamp(1.4rem, 3vw, 2.2rem) 0;
  text-align: center;
}

.hero-action-card h1 {
  margin: 0;
  color: #24170f;
  font-size: clamp(1.5rem, 3.3vw, 2.5rem);
  line-height: 1.2;
}

.hero-book-button {
  width: min(320px, 100%);
  min-height: clamp(3.1rem, 5vw, 3.4rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.82rem, 1.3vw, 0.95rem);
}

.home-salons-section {
  padding: clamp(2rem, 4.5vw, 3.4rem) 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(205, 165, 107, 0.12), transparent 34%),
    linear-gradient(180deg, #17110d, #0b0806);
}

.home-salons-section > .container {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.8rem);
}

.home-salons-section h2 {
  margin: 0;
  color: #f5dca5;
  font-size: clamp(1.5rem, 3.3vw, 2.5rem);
  line-height: 1.2;
  text-align: center;
}

.home-salons-section .card {
  background: linear-gradient(180deg, #b69a76, #9e7e5c);
  border-color: rgba(91, 60, 39, 0.32);
  color: #2b1b12;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35) inset,
    0 18px 38px rgba(0, 0, 0, 0.25);
}

.home-salons-section .card h3 {
  color: #3b2418;
  text-shadow: none;
}

.home-salons-section .card p {
  color: #4f382a;
}

.home-salon-card .card-body {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-salon-card .branch-contact-actions {
  justify-content: center;
}

.home-salon-flip {
  width: 100%;
  height: clamp(180px, 24vw, 240px);
  margin: 0.35rem 0 0.5rem;
  perspective: 1200px;
}

.home-salon-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.home-salon-flip.is-flipped .home-salon-flip-inner {
  transform: rotateY(180deg);
}

.home-salon-flip-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(59, 36, 24, 0.32);
  border-radius: 0.75rem;
  background: #d0b18c;
  backface-visibility: hidden;
}

.home-salon-flip-face-photos {
  transform: rotateY(180deg);
}

.home-salon-flip iframe,
.home-salon-flip .branch-carousel,
.home-salon-flip .branch-carousel-track {
  display: block;
  width: 100%;
  height: 100%;
}

.home-salon-flip iframe {
  border: 0;
}

.home-salon-flip .branch-carousel {
  border-bottom: 0;
}

.home-salon-flip .branch-carousel img {
  height: 100%;
}

.home-salon-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  gap: 0.9rem;
  width: min(430px, 100%);
  margin: auto auto 0;
  padding-top: 1.2rem;
}

.home-salon-actions .btn {
  width: 100%;
  min-width: 0;
  justify-content: center;
  text-align: center;
}

@media (hover: hover) {
  .card.home-salon-card:hover {
    transform: scale(1.015);
    border-color: rgba(91, 60, 39, 0.32);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.35) inset,
      0 18px 38px rgba(0, 0, 0, 0.25);
  }

}

.home-services-section {
  padding: clamp(2.4rem, 5vw, 4rem) 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 248, 232, 0.42), transparent 38%),
    linear-gradient(180deg, #dfc9ac, #bea07d);
}

.home-services-section > .container {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2rem);
}

.home-services-section h2 {
  margin: 0;
  color: #2b1b12;
  font-size: clamp(1.5rem, 3.3vw, 2.5rem);
  line-height: 1.2;
  text-align: center;
}

.home-services-grid {
  align-items: stretch;
}

.service-flip-card {
  min-width: 0;
  height: clamp(410px, 42vw, 470px);
  perspective: 1400px;
}

.service-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.68s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.service-flip-card.is-flipped .service-flip-inner {
  transform: rotateY(180deg);
}

.service-flip-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 209, 123, 0.42);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 85% 0%, rgba(255, 227, 156, 0.1), transparent 30%),
    linear-gradient(180deg, #211711, #0e0906);
  box-shadow:
    0 0 0 1px rgba(255, 236, 178, 0.05) inset,
    0 20px 44px rgba(44, 27, 17, 0.28);
  backface-visibility: hidden;
}

.service-flip-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-flip-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(1.1rem, 2.5vw, 1.6rem);
  background: linear-gradient(180deg, transparent 34%, rgba(10, 6, 4, 0.42) 56%, rgba(10, 6, 4, 0.94) 100%);
  text-align: center;
}

.service-flip-face h3 {
  margin: 0;
  color: #ffe09a;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  line-height: 1.2;
}

.service-basic-price {
  margin: 0.55rem 0 1rem;
  color: #fff0d2;
  font-size: 1rem;
  font-weight: 700;
}

.service-flip-face .btn {
  width: min(180px, 100%);
  justify-content: center;
}

.service-flip-back {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1.15rem, 2.5vw, 1.7rem);
  transform: rotateY(180deg);
  text-align: center;
}

.service-flip-back > p:not(.service-basic-price) {
  margin: 0.75rem 0 0;
  color: #ead8bf;
  font-size: clamp(0.86rem, 1.25vw, 0.96rem);
  line-height: 1.55;
}

.service-flip-back .service-basic-price {
  margin-top: 1rem;
}

.home-why-section {
  padding: clamp(2.5rem, 5vw, 4.2rem) 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(205, 165, 107, 0.13), transparent 36%),
    linear-gradient(180deg, #17110d, #090604);
}

.home-why-section > .container {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2rem);
  justify-items: center;
}

.home-why-section h2 {
  margin: 0;
  color: #f5dca5;
  font-size: clamp(1.5rem, 3.3vw, 2.5rem);
  text-align: center;
}

.home-benefits {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-benefit {
  min-width: 0;
  padding: clamp(1.2rem, 2.7vw, 1.8rem);
  border: 1px solid rgba(91, 60, 39, 0.32);
  border-radius: 1rem;
  background: linear-gradient(180deg, #b69a76, #9e7e5c);
  color: #2b1b12;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.28) inset,
    0 18px 38px rgba(0, 0, 0, 0.22);
  text-align: center;
}

.home-benefit > span {
  display: inline-grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(59, 36, 24, 0.42);
  border-radius: 999px;
  color: #3b2418;
  font-family: var(--font-display);
  font-weight: 700;
}

.home-benefit h3 {
  margin: 0;
  color: #2d1b11;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.3;
}

.home-benefit p {
  margin: 0.7rem 0 0;
  color: #4a3325;
  line-height: 1.55;
}

.home-why-cta {
  width: min(280px, 100%);
  justify-content: center;
}

.home-pricing-section {
  padding: clamp(2.5rem, 5vw, 4.2rem) 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 248, 232, 0.46), transparent 38%),
    linear-gradient(180deg, #dfc9ac, #bea07d);
}

.home-pricing-section > .container {
  display: grid;
  gap: 1.25rem;
  justify-items: center;
}

.home-pricing-head {
  max-width: 680px;
  text-align: center;
}

.home-pricing-head .pricing-kicker {
  color: #5a3a2a;
}

.home-pricing-head h2 {
  margin: 0;
  color: #2b1b12;
  font-size: clamp(1.5rem, 3.3vw, 2.5rem);
}

.home-pricing-head > p:last-child {
  margin: 0.55rem 0 0;
  color: #4f382a;
}

.home-price-table-wrap {
  width: min(760px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 209, 123, 0.42);
  border-radius: 1rem;
  background: linear-gradient(180deg, #211711, #0e0906);
  box-shadow: 0 20px 44px rgba(44, 27, 17, 0.26);
}

.home-price-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.home-price-table th,
.home-price-table td {
  padding: 0.85rem clamp(0.55rem, 2vw, 1.15rem);
  border-bottom: 1px solid rgba(255, 209, 123, 0.2);
  text-align: center;
  white-space: nowrap;
}

.home-price-table thead th {
  background: rgba(205, 165, 107, 0.14);
  color: #f6d891;
  font-size: clamp(0.75rem, 1.7vw, 0.9rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-price-table tbody th {
  color: #dfc6a8;
  font-size: 0.92rem;
  font-weight: 500;
}

.home-price-table tbody td {
  color: #fff0be;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 700;
}

.home-price-table tbody tr:last-child > * {
  border-bottom: 0;
}

.home-price-table tbody tr.is-featured {
  background: rgba(205, 165, 107, 0.16);
}

.home-pricing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.home-pricing-actions .btn {
  min-width: min(220px, 100%);
  justify-content: center;
}

@media (max-width: 760px) {
  .home-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .home-price-table th,
  .home-price-table td {
    padding: 0.75rem 0.35rem;
  }

  .home-price-table thead th {
    letter-spacing: 0.02em;
  }
}

.hero-home picture {
  display: block;
}

.hero-banner {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 1774 / 887;
  object-fit: contain;
  border-radius: 0;
}

.home-page .site-header {
  position: relative;
  background: linear-gradient(180deg, #b69a76, #9e7e5c);
  border-bottom: 1px solid rgba(59, 36, 24, 0.32);
  backdrop-filter: blur(6px);
  padding-block: 0.45rem;
}

.home-page .header-inner { padding-block: 0; }
.home-page .brand-logo { height: 54px; }

@media (min-width: 1051px) {
  .home-page .hero-banner {
    height: min(50vw, calc(100svh - 70px));
    object-fit: cover;
  }
}

.home-page .desktop-book-btn {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

h1,
h2,
h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.title-location {
  display: block;
  margin-top: 0.2rem;
  color: #d8bea0;
  font-family: var(--font-body);
  font-size: 0.45em;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.section,
.page-head {
  padding: 2.3rem 0;
}

.section-soft {
  background: linear-gradient(180deg, #1b1410, #15110d);
}

.grid-two {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-three {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.branches-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.branch-showcase {
  border-radius: 1rem;
  overflow: hidden;
}

.branch-carousel {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #17120f;
}

.branch-carousel-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.branch-carousel img {
  flex: 0 0 100%;
  width: 100%;
  height: clamp(220px, 32vw, 340px);
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(248, 241, 231, 0.55);
  background: rgba(23, 18, 15, 0.6);
  color: #f8f1e7;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.carousel-arrow-prev { left: 0.7rem; }
.carousel-arrow-next { right: 0.7rem; }
.carousel-arrow:hover { background: rgba(23, 18, 15, 0.78); }
.carousel-arrow:focus-visible {
  outline: 2px solid #cda56b;
  outline-offset: 2px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 0.75rem;
  z-index: 2;
  display: flex;
  gap: 0.4rem;
  transform: translateX(-50%);
}

.carousel-dots button {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 1px solid rgba(248, 241, 231, 0.85);
  border-radius: 999px;
  background: rgba(23, 18, 15, 0.55);
  cursor: pointer;
}

.carousel-dots button.is-active { background: #e4b96f; }
.carousel-dots button:focus-visible { outline: 2px solid #f8f1e7; outline-offset: 2px; }

.carousel-status {
  position: absolute;
  right: 0.75rem;
  bottom: 0.65rem;
  z-index: 2;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  background: rgba(23, 18, 15, 0.68);
  color: #f8f1e7;
  font-size: 0.72rem;
}

.venue-contact-card { overflow: hidden; }

.branch-map-wrap {
  margin-top: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  overflow: hidden;
}

.branch-map-wrap iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

.branch-panel-map {
  position: relative;
  margin-top: 1rem;
  border-color: rgba(255, 214, 128, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 236, 178, 0.08), rgba(255, 236, 178, 0.02)),
    rgba(13, 8, 5, 0.74);
  box-shadow:
    0 0 0 1px rgba(255, 236, 178, 0.08) inset,
    0 16px 32px rgba(0, 0, 0, 0.18);
}

.branch-panel-map iframe {
  height: clamp(190px, 26vw, 260px);
  filter: sepia(0.12) saturate(0.82) contrast(0.94);
}

.branch-map-link {
  display: block;
  padding: 0.75rem 0.9rem;
  border-top: 1px solid rgba(255, 214, 128, 0.26);
  color: #ffd982;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.branch-map-link:hover,
.branch-map-link:focus-visible {
  color: #fff2c3;
  background: rgba(255, 236, 178, 0.06);
  outline: none;
}

.branch-board {
  margin-bottom: 2.2rem;
}

.branch-board-inner {
  text-align: center;
}

.branch-showcase-grid,
.branch-detail-layout,
.branch-reviews-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.branch-showcase-grid,
.branch-reviews-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.branch-detail-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: stretch;
}

.branch-panel,
.reviews-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 209, 123, 0.38);
  border-radius: 0.9rem;
  background:
    linear-gradient(180deg, rgba(255, 236, 178, 0.08), rgba(255, 236, 178, 0.02)),
    rgba(13, 8, 5, 0.74);
  box-shadow: 0 0 28px rgba(0, 0, 0, 0.16) inset;
  text-align: left;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.branch-panel-media {
  border-bottom: 1px solid rgba(205, 165, 107, 0.28);
}

.branch-panel-heading {
  padding: clamp(1rem, 2.5vw, 1.35rem);
  border-bottom: 1px solid rgba(205, 165, 107, 0.28);
  text-align: left;
}

.branch-panel-heading h3 {
  margin-bottom: 0;
}

.branch-panel-media img {
  height: clamp(250px, 34vw, 390px);
}

.branch-panel-content,
.branch-contact-panel {
  padding: clamp(1rem, 2.5vw, 1.35rem);
}

.branch-panel h2,
.branch-panel h3,
.reviews-panel h3 {
  color: #ffd982;
}

.branch-facts {
  display: grid;
  gap: 0.75rem;
  margin: 0.9rem 0 0;
}

.branch-facts div {
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(205, 165, 107, 0.22);
}

.branch-facts dt {
  color: #d8bea0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.branch-facts dd {
  margin: 0.18rem 0 0;
  color: #fff0d2;
}

.branch-map-quiet {
  border-color: rgba(205, 165, 107, 0.32);
}

.branch-reviews-section {
  scroll-margin-top: 6rem;
  padding-top: 0.6rem;
  text-align: center;
}

.branch-reviews-section h2 {
  color: #fff2c3;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  text-shadow: 0 0 18px rgba(255, 178, 58, 0.26);
}

.reviews-panel {
  padding: clamp(1rem, 2.5vw, 1.25rem);
}

.reviews-panel-single {
  width: min(780px, 100%);
  margin: 1.5rem auto 0;
}

.reviews-panel-head {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}

.reviews-panel-head h3 {
  margin-bottom: 0;
}

.card {
  position: relative;
  background:
    radial-gradient(circle at 85% 0%, rgba(255, 227, 156, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 236, 178, 0.08), rgba(255, 236, 178, 0.025)),
    rgba(13, 8, 5, 0.82);
  border: 1px solid rgba(255, 209, 123, 0.38);
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 236, 178, 0.04) inset,
    0 18px 38px rgba(0, 0, 0, 0.2);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.card h2,
.card h3 {
  color: #ffd982;
  text-shadow: 0 0 16px rgba(255, 176, 58, 0.18);
}

.card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
}

.branch-card-image {
  aspect-ratio: 1 / 1;
}

.branch-card-title {
  padding: 1rem 1rem 0.85rem;
  margin-bottom: 0;
}

.branch-card-meta {
  margin-top: 0.25rem;
  color: var(--muted);
}

.card-body {
  padding: 1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 0.65rem;
  padding: 0.62rem 0.95rem;
  text-decoration: none;
  border: 1px solid var(--gold);
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(255, 236, 178, 0.06) inset;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  border-color: #e6bb70;
  background: linear-gradient(180deg, #ffe4a3, #cda56b);
  color: #1b140f;
  font-weight: 700;
  box-shadow:
    0 0 0 1px rgba(255, 246, 204, 0.2) inset,
    0 8px 22px rgba(205, 125, 37, 0.2);
}

.btn-secondary {
  border-color: rgba(255, 216, 132, 0.5);
  background:
    linear-gradient(180deg, rgba(255, 236, 178, 0.09), rgba(255, 236, 178, 0.025)),
    rgba(13, 8, 5, 0.68);
  color: #fff0d2;
}

.btn:focus-visible {
  outline: 2px solid #ffe4a3;
  outline-offset: 3px;
}

@media (hover: hover) {
  .card:not(.home-salon-card):hover,
  .branch-panel:hover,
  .reviews-panel:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 216, 132, 0.74);
    background:
      radial-gradient(circle at 85% 0%, rgba(255, 227, 156, 0.16), transparent 32%),
      linear-gradient(180deg, rgba(205, 165, 107, 0.2), rgba(255, 250, 243, 0.045)),
      rgba(13, 8, 5, 0.82);
    box-shadow:
      0 0 28px rgba(205, 125, 37, 0.18) inset,
      0 24px 48px rgba(0, 0, 0, 0.3);
  }

  .btn:hover,
  .btn:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 226, 155, 0.9);
    box-shadow:
      0 0 0 1px rgba(255, 246, 204, 0.14) inset,
      0 0 24px rgba(205, 125, 37, 0.28);
  }

  .btn-primary:hover,
  .btn-primary:focus-visible {
    background: linear-gradient(180deg, #fff0bd, #dfb66f);
    color: #120c08;
  }

  .btn-secondary:hover,
  .btn-secondary:focus-visible {
    background: linear-gradient(180deg, rgba(205, 165, 107, 0.24), rgba(255, 250, 243, 0.07));
    color: #fff2c3;
  }
}

.price {
  color: var(--gold);
  font-weight: 700;
}

.pricing-section {
  position: relative;
  padding-top: clamp(2rem, 5vw, 4rem);
}

.pricing-board {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(255, 205, 115, 0.58);
  border-radius: 1.1rem;
  background:
    linear-gradient(135deg, rgba(255, 197, 91, 0.38), rgba(255, 255, 255, 0.04) 19%, rgba(205, 165, 107, 0.32) 52%, rgba(255, 218, 130, 0.5)),
    #050403;
  box-shadow:
    0 0 0 1px rgba(255, 236, 178, 0.16) inset,
    0 28px 80px rgba(0, 0, 0, 0.36);
}

.pricing-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.92), rgba(17, 10, 5, 0.72), rgba(5, 4, 3, 0.9)),
    url("/static/images/banner.png") center / cover no-repeat;
  opacity: 0.28;
  filter: saturate(1.15);
}

.pricing-board::after {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border: 1px solid rgba(255, 214, 128, 0.5);
  border-radius: 0.8rem;
  pointer-events: none;
}

.pricing-board-inner {
  position: relative;
  z-index: 1;
  padding: clamp(1.4rem, 4vw, 3.4rem);
  border-radius: 0.75rem;
  background:
    radial-gradient(circle at 18% 0%, rgba(250, 183, 76, 0.28), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(255, 227, 156, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(15, 9, 5, 0.86), rgba(18, 12, 8, 0.92));
  text-align: center;
}

.pricing-kicker {
  margin: 0 0 0.5rem;
  color: #ffe4a3;
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 2vw, 1rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.pricing-board h1 {
  margin-bottom: 0.35rem;
  color: #fff2c3;
  font-size: clamp(2.2rem, 7vw, 4.6rem);
  text-shadow:
    0 2px 0 #6f4018,
    0 0 22px rgba(255, 178, 58, 0.48);
}

.pricing-lead {
  max-width: 620px;
  margin: 0 auto;
  color: #e9d5b2;
  font-size: clamp(0.98rem, 2vw, 1.1rem);
}

.promo-strip {
  width: min(720px, 100%);
  margin: 1.35rem auto 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(255, 222, 143, 0.82);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(108, 56, 13, 0.88), rgba(205, 145, 49, 0.34), rgba(108, 56, 13, 0.88)),
    rgba(5, 4, 3, 0.72);
  color: #fff1c8;
  box-shadow:
    0 0 0 1px rgba(255, 246, 204, 0.12) inset,
    0 0 34px rgba(255, 172, 54, 0.28),
    0 0 30px rgba(205, 125, 37, 0.26) inset;
}

.promo-label {
  color: #1b140f;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe4a3, #cda56b);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.promo-highlight,
.promo-price {
  color: #ffd36f;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.8vw, 1.38rem);
  letter-spacing: 0.09em;
  text-shadow:
    0 0 10px rgba(255, 222, 143, 0.54),
    0 0 22px rgba(255, 152, 32, 0.36);
}

.promo-price {
  padding: 0.18rem 0.5rem;
  border-radius: 0.55rem;
  background: rgba(255, 221, 127, 0.12);
  border: 1px solid rgba(255, 221, 127, 0.44);
}

.price-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.price-group {
  padding: clamp(1rem, 2.5vw, 1.35rem);
  border: 1px solid rgba(255, 209, 123, 0.38);
  border-radius: 0.9rem;
  background:
    linear-gradient(180deg, rgba(255, 236, 178, 0.08), rgba(255, 236, 178, 0.02)),
    rgba(13, 8, 5, 0.72);
}

.price-group h2 {
  margin-bottom: 1rem;
  color: #ffd982;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
}

.price-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.price-option {
  min-height: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.85rem;
  border: 1px solid rgba(205, 165, 107, 0.34);
  border-radius: 0.75rem;
  background: rgba(255, 250, 243, 0.06);
}

.price-option span {
  color: #d8bea0;
  font-size: 0.9rem;
}

.price-option strong {
  color: #fff0be;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  line-height: 1;
  text-shadow: 0 0 16px rgba(255, 176, 58, 0.28);
}

.price-option.is-featured {
  border-color: rgba(255, 216, 132, 0.72);
  background: linear-gradient(180deg, rgba(205, 165, 107, 0.22), rgba(255, 250, 243, 0.06));
  box-shadow: 0 0 24px rgba(205, 125, 37, 0.2) inset;
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 0.7rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.muted {
  color: var(--muted);
}

.review-quote {
  margin: 0.9rem 0 0;
  padding: 0.9rem;
  border-left: 3px solid var(--gold);
  background: rgba(248, 241, 231, 0.06);
  border-radius: 0.6rem;
}

.review-quote p {
  margin: 0;
}

.review-quote footer {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  background: rgba(5, 4, 3, 0.42);
  color: rgba(244, 232, 218, 0.72);
  border-top: 1px solid rgba(205, 165, 107, 0.22);
  margin-top: 2.5rem;
  padding: 1rem 0;
}

.booking-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 115;
}

.booking-modal.is-open {
  display: flex;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 7, 5, 0.76);
  backdrop-filter: blur(4px);
}

.booking-modal-panel {
  position: relative;
  z-index: 1;
  overflow: auto;
  width: min(96vw, 1120px);
  max-height: calc(100dvh - 2rem);
  padding: clamp(1.1rem, 2.6vw, 2rem);
  border: 1px solid rgba(255, 205, 115, 0.58);
  border-radius: 1.1rem;
  background:
    linear-gradient(135deg, rgba(255, 197, 91, 0.34), rgba(255, 255, 255, 0.04) 20%, rgba(205, 165, 107, 0.28) 58%, rgba(255, 218, 130, 0.42)),
    #050403;
  color: #fff0d2;
  box-shadow:
    0 0 0 1px rgba(255, 236, 178, 0.16) inset,
    0 28px 80px rgba(0, 0, 0, 0.42);
  text-align: center;
}

.booking-modal-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.92), rgba(17, 10, 5, 0.72), rgba(5, 4, 3, 0.9)),
    url("/static/images/banner.png") center / cover no-repeat;
  opacity: 0.24;
  pointer-events: none;
}

.booking-modal-panel > * {
  position: relative;
  z-index: 1;
}

.booking-modal-panel h2 {
  margin-bottom: 0.4rem;
  color: #fff2c3;
  font-size: clamp(1.65rem, 3.5vw, 2.65rem);
  text-shadow:
    0 2px 0 #6f4018,
    0 0 22px rgba(255, 178, 58, 0.42);
}

.booking-modal-lead {
  max-width: 720px;
  margin: 0 auto;
  color: #e9d5b2;
}

.booking-modal-header { padding: 0 2.5rem; }

.booking-modal-close {
  position: absolute;
  z-index: 3;
  top: 0.75rem;
  right: 0.85rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 222, 143, 0.44);
  border-radius: 999px;
  background: rgba(13, 8, 5, 0.64);
  color: #fff0d2;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.booking-modal-close:hover,
.booking-modal-close:focus-visible {
  border-color: #ffd884;
  outline: 2px solid rgba(255, 216, 132, 0.65);
  outline-offset: 2px;
}

.booking-modal-actions {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.booking-modal-actions .home-salon-card {
  background: linear-gradient(180deg, #b69a76, #9e7e5c);
  border-color: rgba(91, 60, 39, 0.32);
  color: #2b1b12;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35) inset,
    0 18px 38px rgba(0, 0, 0, 0.25);
}

.booking-modal-actions .home-salon-card h3 {
  color: #3b2418;
  text-shadow: none;
}

.booking-modal-actions .home-salon-card p {
  color: #4f382a;
}

.booking-branch-choice {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(205, 165, 107, 0.38);
  border-radius: 0.8rem;
  background:
    linear-gradient(180deg, rgba(255, 236, 178, 0.08), rgba(255, 236, 178, 0.02)),
    rgba(13, 8, 5, 0.74);
  color: #fff0d2;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-branch-choice:hover,
.booking-branch-choice:focus-within {
  transform: translateY(-2px);
  border-color: rgba(255, 216, 132, 0.76);
  box-shadow: 0 0 24px rgba(205, 125, 37, 0.22) inset;
}

.booking-branch-heading {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.booking-branch-heading > div { display: grid; gap: 0.2rem; }

.booking-branch-heading span:not(.booking-pin) {
  color: #d8bea0;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-branch-heading strong {
  color: #fff0be;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.1;
}

.booking-pin {
  flex: 0 0 auto;
  color: #e2b96f;
  font-size: 1.5rem;
  line-height: 1;
}

.booking-branch-choice address {
  color: #f2e3cb;
  font-style: normal;
  line-height: 1.45;
}

.booking-branch-map {
  overflow: hidden;
  height: 190px;
  border: 1px solid rgba(205, 165, 107, 0.4);
  border-radius: 0.65rem;
  background: #100c09;
}

.booking-branch-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.booking-branch-links {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: center;
}

.booking-branch-links .btn { min-height: 44px; }

.booking-map-link {
  color: #e9d5b2;
  font-size: 0.78rem;
  text-align: right;
  text-underline-offset: 0.18em;
}

.booking-map-link:focus-visible {
  outline: 2px solid #ffd884;
  outline-offset: 4px;
}

.branch-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.branch-contact-action {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(205, 165, 107, 0.48);
  border-radius: 999px;
  background: rgba(13, 8, 5, 0.66);
  color: #f3d79c;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.branch-contact-action svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.branch-contact-action svg .icon-fill { fill: currentColor; stroke: none; }
.branch-contact-whatsapp { color: #9ed7ad; }

.branch-contact-action:hover:not(:disabled),
.branch-contact-action:focus-visible:not(:disabled) {
  transform: translateY(-2px);
  border-color: #ffd884;
  background: rgba(205, 165, 107, 0.18);
  color: #fff0be;
  outline: none;
}

.branch-contact-action:focus-visible:not(:disabled) {
  box-shadow: 0 0 0 3px rgba(255, 216, 132, 0.28);
}

.branch-contact-action:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.footer-content {
  display: grid;
  gap: 0.75rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 1rem;
}

.footer-nav a {
  color: #f5dca5;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #fff0be;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.footer-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  line-height: 1.45;
  text-align: center;
}

.footer-line span:not(:last-child)::after {
  content: "·";
  margin-left: 0.75rem;
  color: rgba(205, 165, 107, 0.58);
}

.footer-brand {
  color: #f5dca5;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-line a {
  color: rgba(244, 232, 218, 0.82);
  text-decoration: none;
}

.footer-line a:hover {
  color: #f2c879;
}

.footer-cookie-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(244, 232, 218, 0.82);
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
}

.footer-cookie-button:hover { color: #f2c879; }
.footer-cookie-button:focus-visible { outline: 2px solid #ffe4a3; outline-offset: 3px; }

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 110;
  width: min(1120px, calc(100% - 2rem));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: center;
  padding: 1.25rem;
  border: 1px solid rgba(255, 205, 115, 0.72);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 10% 0%, rgba(250, 183, 76, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(27, 18, 11, 0.99), rgba(10, 7, 5, 0.99));
  color: #fff0d2;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(255, 236, 178, 0.1) inset;
  transform: translateX(-50%);
}

.cookie-banner h2 {
  margin-bottom: 0.3rem;
  color: #ffe9b0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.cookie-banner p { margin: 0; color: #ddcbb8; line-height: 1.55; }
.cookie-banner .pricing-kicker { margin-bottom: 0.25rem; color: #f2c879; }
.cookie-banner a,
.cookie-policy-link a,
.privacy-content a { color: #ffd982; text-decoration: underline; text-underline-offset: 0.2em; }

.cookie-banner-actions,
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cookie-banner-actions { justify-content: flex-end; }
.cookie-banner-actions .btn { min-width: 8.8rem; }

.btn-consent-equal {
  border-color: #e6bb70;
  background: linear-gradient(180deg, #ffe4a3, #cda56b);
  color: #1b140f;
  box-shadow: 0 0 0 1px rgba(255, 246, 204, 0.2) inset, 0 8px 22px rgba(205, 125, 37, 0.2);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  padding: 1rem;
}

.cookie-modal.is-open { display: grid; place-items: center; }

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 2, 2, 0.82);
  backdrop-filter: blur(5px);
}

.cookie-modal-panel {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: calc(100svh - 2rem);
  overflow-y: auto;
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 1px solid rgba(255, 205, 115, 0.66);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 12% 0%, rgba(250, 183, 76, 0.18), transparent 34%),
    linear-gradient(180deg, #1b120c, #0e0a07);
  color: #e4d3c0;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.65);
}

.cookie-modal-panel h2 { color: #ffe9b0; font-size: clamp(1.8rem, 5vw, 2.8rem); }
.cookie-modal-panel > p { line-height: 1.6; }

.cookie-option {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.8rem;
  padding: 1rem;
  border: 1px solid rgba(255, 216, 132, 0.32);
  border-radius: 0.75rem;
  background: rgba(255, 236, 178, 0.045);
}

.cookie-option strong { color: #fff0d2; }
.cookie-option p { margin: 0.25rem 0 0; color: #cbb9a7; font-size: 0.9rem; line-height: 1.45; }
.cookie-always-on { flex: 0 0 auto; color: #ffd982; font-size: 0.76rem; font-weight: 700; text-transform: uppercase; }

.cookie-option-toggle input {
  width: 2.8rem;
  height: 1.45rem;
  flex: 0 0 auto;
  accent-color: #cda56b;
  cursor: pointer;
}

.cookie-policy-link { margin: 1rem 0; }
.cookie-modal-actions .btn { flex: 1 1 10rem; }

.privacy-head { max-width: 900px; }
.privacy-head h1 { color: #fff0be; }
.privacy-head small { color: #bca891; }

.privacy-content {
  max-width: 900px;
  display: grid;
  gap: 0.85rem;
}

.privacy-content section {
  padding: 1.15rem;
  border: 1px solid rgba(255, 216, 132, 0.3);
  border-radius: 0.8rem;
  background: rgba(255, 236, 178, 0.035);
}

.privacy-content h2 { margin-bottom: 0.35rem; color: #f5dca5; font-size: clamp(1.25rem, 3vw, 1.7rem); }
.privacy-content p { margin: 0; color: #d8c7b5; line-height: 1.7; }
.privacy-measurement-id { padding: 0.8rem 1rem; font-size: 0.85rem; }

@media (max-width: 760px) {
  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    bottom: 0.5rem;
    width: calc(100% - 1rem);
    padding: 1rem;
  }
  .cookie-banner-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-banner-actions .btn { min-width: 0; }
  .cookie-banner-actions .btn-consent-equal { grid-row: 1; }
  .cookie-banner-actions .btn-secondary { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 420px) {
  .cookie-banner-actions { grid-template-columns: 1fr; }
  .cookie-banner-actions .btn-consent-equal { grid-row: auto; }
  .cookie-banner-actions .btn-secondary { grid-column: auto; grid-row: auto; }
  .cookie-modal-actions { display: grid; grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .home-page .site-header {
    position: relative;
    background: linear-gradient(180deg, #b69a76, #9e7e5c);
    backdrop-filter: blur(6px);
  }
  .desktop-book-btn { display: none; }
  .header-inner { flex-wrap: nowrap; align-items: center; }
  .branches-grid { grid-template-columns: 1fr; }
  .branch-showcase-grid,
  .branch-detail-layout,
  .branch-reviews-grid {
    grid-template-columns: 1fr;
  }
  .price-groups { grid-template-columns: 1fr; }
  .booking-modal-actions { grid-template-rows: none; grid-template-columns: 1fr; grid-auto-rows: 1fr; }
  .promo-strip {
    border-radius: 0.85rem;
  }
}

.language-dropdown {
  position: relative;
  width: 58px;
}

.language-dropdown summary {
  width: 58px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0;
  border: 1px solid rgba(205, 165, 107, 0.35);
  border-radius: 0.75rem;
  background: rgba(5, 4, 3, 0.42);
  color: #fffaf3;
  cursor: pointer;
  list-style: none;
  box-shadow: 0 0 0 1px rgba(255, 236, 178, 0.08) inset;
}

.language-dropdown summary::-webkit-details-marker { display: none; }
.language-dropdown summary::marker { display: none; content: ""; }
.language-dropdown summary:hover,
.language-dropdown summary:focus-visible,
.language-dropdown[open] summary {
  border-color: #cda56b;
  background: rgba(205, 165, 107, 0.18);
  outline: none;
}

.language-flag,
.language-dropdown-panel img {
  width: 30px;
  height: 20px;
  object-fit: contain;
  border-radius: 0.16rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.language-chevron { color: #d8bea0; font-size: 0.8rem; transition: transform 0.2s ease; }
.language-dropdown[open] .language-chevron { transform: rotate(180deg); }

.language-dropdown-panel {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  z-index: 70;
  display: grid;
  gap: 0.3rem;
  width: 58px;
  padding: 0.35rem;
  border: 1px solid rgba(255, 205, 115, 0.58);
  border-radius: 0.75rem;
  background: #0b0805;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.42);
}

.language-dropdown-panel button {
  width: 100%;
  height: 40px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  background: transparent;
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.language-dropdown-panel button:hover,
.language-dropdown-panel button:focus-visible,
.language-dropdown-panel button[aria-current="true"] {
  border-color: rgba(205, 165, 107, 0.65);
  background: rgba(205, 165, 107, 0.18);
  outline: none;
}

@media (max-width: 1050px) {
  .desktop-book-btn,
  .desktop-language-dropdown { display: none; }

  .mobile-language-dropdown { display: block; }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 58px;
    gap: 0.55rem;
  }

  .header-inner > .language-dropdown { margin-left: auto; }
}

@media (max-width: 900px) {
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 58px;
    gap: 0.55rem;
  }
  .header-inner > .language-dropdown { margin-left: auto; }
}

@media (max-width: 420px) {
  .header-inner { grid-template-columns: minmax(0, 1fr) 54px; gap: 0.35rem; }
  .brand span { font-size: 0.72rem; }
  .brand-logo { height: 48px; }
  .language-dropdown,
  .language-dropdown summary,
  .language-dropdown-panel { width: 54px; }
}

@media (max-width: 520px) {
  .pricing-board {
    padding: 0.6rem;
    border-radius: 0.9rem;
  }
  .pricing-board-inner {
    padding: 1.35rem 0.9rem;
  }
  .price-options {
    grid-template-columns: 1fr;
  }
  .price-option {
    min-height: 4.9rem;
  }
  .reviews-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .branch-panel-media img {
    height: 240px;
  }
  .booking-modal-panel {
    width: calc(100vw - 1rem);
    max-height: calc(100dvh - 1rem);
    padding: 1rem;
  }
  .booking-branch-choice {
    min-height: 0;
  }
  .booking-branch-links { grid-template-columns: 1fr; }
  .booking-map-link { min-height: 44px; display: flex; align-items: center; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .home-salon-flip-inner,
  .service-flip-inner,
  .branch-contact-action,
  .booking-branch-choice { transition: none; }
  .branch-contact-action:hover:not(:disabled),
  .branch-contact-action:focus-visible:not(:disabled),
  .booking-branch-choice:hover,
  .booking-branch-choice:focus-within { transform: none; }
}

.breadcrumbs {
  margin-bottom: 1rem;
  color: #d8bea0;
  font-size: 0.82rem;
}
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li:not(:last-child)::after { content: "›"; margin-left: 0.45rem; color: var(--gold); }
.breadcrumbs a { color: inherit; }
.detail-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr); gap: 1.25rem; align-items: stretch; }
.detail-media, .detail-content, .prose-card {
  overflow: hidden;
  padding: clamp(1rem, 2.5vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(51, 39, 29, 0.88), rgba(25, 20, 16, 0.96));
}
.detail-media { padding: 0; }
.detail-service-image { width: 100%; height: 100%; min-height: 360px; object-fit: cover; border-radius: 1rem; }
.detail-content h2, .prose-card h2 { margin-top: 0; }
.section-compact { padding-top: 0; }
.home-content > .container { display: grid; gap: 1.5rem; }
.home-content h2 { margin-bottom: 0; }
.home-content h3 a, .card h2 a { color: inherit; }

@media (max-width: 760px) {
  .detail-grid { grid-template-columns: 1fr; }
  .detail-service-image { min-height: 260px; }
}
