:root {
  --rb-bg: #111210;
  --rb-bg-soft: #181916;
  --rb-panel: #20211d;
  --rb-panel-2: #292a25;
  --rb-text: #f3eadb;
  --rb-text-soft: #c9bfaf;
  --rb-muted: #8e887d;
  --rb-accent: #b9824f;
  --rb-accent-bright: #d4a56f;
  --rb-accent-dark: #714927;
  --rb-border: rgba(243, 234, 219, 0.13);
  --rb-dark: #0b0c0a;
  --rb-white: #fffaf1;
  --rb-success: #8eb58b;
  --rb-danger: #d78d7d;
  --rb-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  --rb-radius: 18px;
  --rb-radius-sm: 10px;
  --rb-container: 1220px;
  --rb-header-height: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--rb-bg);
  color: var(--rb-text);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--rb-accent-bright); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { color: var(--rb-dark); background: var(--rb-accent-bright); }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.8em;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(3rem, 7vw, 6.8rem); }
h2 { font-size: clamp(2.2rem, 4vw, 4.2rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); }
p { margin: 0 0 1.3em; color: var(--rb-text-soft); }

.container { width: min(calc(100% - 40px), var(--rb-container)); margin-inline: auto; }
.content-shell { width: min(100%, 820px); }
.section { padding: clamp(78px, 10vw, 140px) 0; }
.section--muted { background: var(--rb-bg-soft); }
.section--accent { color: var(--rb-dark); background: var(--rb-accent-bright); }
.section--accent p { color: rgba(11, 12, 10, 0.75); }
.site-main { min-height: 60vh; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus, .skip-link:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 12px;
  padding: 12px 18px;
  z-index: 99999;
  color: var(--rb-dark);
  background: var(--rb-white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid var(--rb-accent);
  border-radius: 999px;
  color: var(--rb-dark);
  background: var(--rb-accent-bright);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); color: var(--rb-dark); box-shadow: 0 12px 30px rgba(185, 130, 79, 0.25); }
.button--small { min-height: 42px; padding: 0 20px; font-size: 0.74rem; }
.button--outline { color: var(--rb-text); background: transparent; border-color: rgba(243, 234, 219, 0.35); }
.button--outline:hover { color: var(--rb-dark); background: var(--rb-text); }
.button--dark { color: var(--rb-text); background: var(--rb-dark); border-color: var(--rb-dark); }
.button--dark:hover { color: var(--rb-white); }
.button--block { width: 100%; }
.button.is-disabled, .button[aria-disabled="true"] { pointer-events: none; opacity: 0.45; }
.text-link { color: var(--rb-accent-bright); font-weight: 700; }
.text-link:hover { color: var(--rb-white); }
.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--rb-accent-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.announcement-bar { position: relative; z-index: 1002; color: var(--rb-dark); background: var(--rb-accent-bright); }
.announcement-bar__inner { display: flex; align-items: center; justify-content: center; min-height: 42px; padding-top: 7px; padding-bottom: 7px; }
.announcement-bar__content { display: flex; align-items: center; justify-content: center; gap: 13px; font-size: 0.82rem; text-align: center; }
.announcement-bar__content strong { font-weight: 900; }
.announcement-bar__content span { color: rgba(11, 12, 10, 0.8); }
.announcement-bar__content code { padding: 2px 8px; border: 1px dashed rgba(11, 12, 10, 0.45); border-radius: 4px; background: rgba(255, 255, 255, 0.15); font-weight: 800; }
.announcement-bar__content a { border-bottom: 1px solid currentColor; font-weight: 800; }
.announcement-bar__close { position: absolute; right: 18px; border: 0; color: var(--rb-dark); background: none; font-size: 1.5rem; line-height: 1; }
.announcement-bar.is-hidden { display: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--rb-header-height);
  border-bottom: 1px solid transparent;
  background: rgba(17, 18, 16, 0.94);
  backdrop-filter: blur(18px);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}
.admin-bar .site-header { top: 32px; }
.has-transparent-header .site-header { position: sticky; margin-bottom: calc(-1 * var(--rb-header-height)); background: linear-gradient(to bottom, rgba(5, 6, 5, 0.78), rgba(5, 6, 5, 0)); backdrop-filter: none; }
.has-transparent-header .site-header.is-scrolled { background: rgba(17, 18, 16, 0.96); border-color: var(--rb-border); box-shadow: 0 12px 35px rgba(0, 0, 0, 0.16); backdrop-filter: blur(18px); }
.site-header__inner { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 30px; height: 100%; }
.brand-mark { display: inline-flex; align-items: center; gap: 12px; color: var(--rb-text); }
.brand-mark__icon { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--rb-accent); border-radius: 50%; font-family: "Playfair Display", serif; font-weight: 700; }
.brand-mark__text { font-family: "Playfair Display", serif; font-size: 1.15rem; font-weight: 700; white-space: nowrap; }
.custom-logo-link { display: inline-flex; align-items: center; }
.custom-logo { width: auto; max-height: 54px; }
.primary-navigation .menu { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 2vw, 30px); margin: 0; padding: 0; list-style: none; }
.primary-navigation a { position: relative; color: var(--rb-text); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.035em; white-space: nowrap; }
.primary-navigation a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; content: ""; background: var(--rb-accent-bright); transform: scaleX(0); transform-origin: left; transition: transform 180ms ease; }
.primary-navigation a:hover::after, .primary-navigation .current-menu-item > a::after { transform: scaleX(1); }
.site-header__actions { display: flex; align-items: center; gap: 16px; }
.header-phone { color: var(--rb-text-soft); font-size: 0.78rem; font-weight: 700; white-space: nowrap; }
.language-switcher { display: flex; gap: 5px; color: var(--rb-muted); font-size: 0.72rem; font-weight: 800; }
.language-switcher ul { display: flex; gap: 6px; margin: 0; padding: 0; list-style: none; }
.language-switcher a { color: var(--rb-text); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: none; }
.menu-toggle > span:not(.screen-reader-text) { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--rb-text); transition: transform 180ms ease, opacity 180ms ease; }
.mobile-booking-button { display: none; }

.hero { position: relative; display: grid; align-items: end; min-height: max(720px, 100svh); overflow: hidden; background: #090a08; }
.hero__media { position: absolute; inset: 0; background: radial-gradient(circle at 70% 36%, rgba(185, 130, 79, 0.3), transparent 22%), linear-gradient(120deg, #0a0b09 4%, #151712 50%, #090a08 100%); }
.hero__media::before { position: absolute; top: 12%; right: 8%; width: min(42vw, 650px); aspect-ratio: 0.76; border: 1px solid rgba(212, 165, 111, 0.3); border-radius: 48% 48% 8px 8px; content: ""; background: linear-gradient(145deg, rgba(255,255,255,.03), rgba(0,0,0,.45)), repeating-linear-gradient(90deg, transparent 0 48px, rgba(255,255,255,.018) 49px 50px); box-shadow: inset 0 0 80px rgba(0,0,0,.7), 0 50px 90px rgba(0,0,0,.42); transform: rotate(2deg); }
.hero__media::after { position: absolute; right: 16%; bottom: 8%; width: 13vw; min-width: 150px; aspect-ratio: .5; border-radius: 80px 80px 12px 12px; content: ""; background: linear-gradient(90deg, #0d0e0c, #28251f 45%, #0b0c0a); box-shadow: 0 30px 70px rgba(0,0,0,.65); opacity: .92; }
.hero__texture { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.08) .65px, transparent .65px); background-size: 7px 7px; opacity: .16; mix-blend-mode: overlay; }
.hero__spotlight { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,6,5,.94) 0%, rgba(5,6,5,.78) 42%, rgba(5,6,5,.12) 75%, rgba(5,6,5,.55) 100%), linear-gradient(to top, #090a08 0%, transparent 35%); }
.hero__content { position: relative; z-index: 2; padding-top: calc(var(--rb-header-height) + 110px); padding-bottom: 70px; }
.hero h1 { max-width: 990px; margin-bottom: 26px; }
.hero p { max-width: 670px; font-size: clamp(1.05rem, 1.4vw, 1.28rem); }
.hero__actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.hero__stats { display: flex; gap: clamp(36px, 6vw, 88px); margin-top: 80px; padding-top: 28px; border-top: 1px solid var(--rb-border); }
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats strong { color: var(--rb-accent-bright); font-family: "Playfair Display", serif; font-size: 1.8rem; }
.hero__stats span { color: var(--rb-muted); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }

.promotion-highlight { position: relative; z-index: 3; margin-top: -1px; padding: 25px 0; color: var(--rb-dark); background: var(--rb-accent-bright); }
.promotion-highlight__inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.promotion-highlight .eyebrow { margin: 0 0 6px; color: rgba(11, 12, 10, .62); }
.promotion-highlight h2 { margin: 0 0 4px; font-size: clamp(1.5rem, 2.4vw, 2.4rem); }
.promotion-highlight p { margin: 0; color: rgba(11, 12, 10, .72); }
.promotion-highlight__meta { display: flex; align-items: center; gap: 16px; }
.promotion-highlight__meta > strong { font-family: "Playfair Display", serif; font-size: 2.5rem; }
.promotion-highlight__meta code { padding: 7px 10px; border: 1px dashed rgba(11, 12, 10, .5); border-radius: 5px; font-weight: 800; }
.promotion-highlight .button { color: var(--rb-text); background: var(--rb-dark); border-color: var(--rb-dark); }

.split-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(50px, 8vw, 120px); }
.split-layout--center { align-items: center; }
.brand-intro h2 { max-width: 660px; }
.brand-intro p { font-size: 1.08rem; }
.section-heading { max-width: 800px; margin: 0 auto 55px; text-align: center; }
.section-heading--left { margin: 0 0 32px; text-align: left; }
.section-heading p { max-width: 660px; margin-inline: auto; }
.section-heading--left p { margin-inline: 0; }

.card-grid { display: grid; gap: 26px; }
.card-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-card, .post-card, .content-card, .barber-card, .branch-card { overflow: hidden; border: 1px solid var(--rb-border); border-radius: var(--rb-radius); background: var(--rb-panel); transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease; }
.service-card:hover, .post-card:hover, .content-card:hover, .barber-card:hover, .branch-card:hover { transform: translateY(-7px); border-color: rgba(212,165,111,.45); box-shadow: var(--rb-shadow); }
.service-card__media, .post-card__media, .content-card__media, .barber-card__media { display: block; aspect-ratio: 1.28; overflow: hidden; background: #151612; }
.service-card__media img, .post-card__media img, .content-card__media img, .barber-card__media img, .branch-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.service-card:hover img, .post-card:hover img, .content-card:hover img, .barber-card:hover img, .branch-card:hover img { transform: scale(1.045); }
.service-card__body, .post-card__body, .content-card__body, .barber-card__body, .branch-card__body { padding: 25px; }
.service-card__meta, .content-card__meta { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 16px; color: var(--rb-accent-bright); font-size: .76rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.service-card h3, .post-card h3, .post-card h2, .content-card h2, .barber-card h3, .branch-card h3 { margin-bottom: 13px; font-size: 1.55rem; }
.service-card p, .post-card p, .content-card p { font-size: .9rem; }
.post-card__body > span { display: block; margin-bottom: 12px; color: var(--rb-muted); font-size: .74rem; text-transform: uppercase; }
.barber-card__media { aspect-ratio: .82; }
.barber-card__body > span { color: var(--rb-accent-bright); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.barber-card__body p { margin: 0; color: var(--rb-muted); font-size: .84rem; }
.branch-card { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); min-height: 380px; }
.branch-card__media { min-height: 100%; overflow: hidden; }
.branch-card__body { display: flex; flex-direction: column; justify-content: center; }
.branch-card__actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 20px; }
.card-placeholder { display: grid; place-items: center; width: 100%; height: 100%; min-height: 220px; background: radial-gradient(circle at 60% 30%, rgba(185,130,79,.22), transparent 25%), linear-gradient(145deg, #24251f, #11120f); }
.card-placeholder span { display: grid; place-items: center; width: 80px; height: 80px; border: 1px solid rgba(212,165,111,.5); border-radius: 50%; color: var(--rb-accent-bright); font-family: "Playfair Display", serif; font-size: 1.5rem; }

.combo-preview h2 { max-width: 710px; }
.combo-preview__panel { padding: 25px; border-radius: var(--rb-radius); color: var(--rb-text); background: var(--rb-dark); box-shadow: var(--rb-shadow); }
.combo-preview__panel > div { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 0; border-bottom: 1px solid var(--rb-border); }
.combo-preview__panel > div:last-child { border-bottom: 0; }
.combo-preview__panel span { color: var(--rb-text-soft); }
.combo-preview__total strong { color: var(--rb-accent-bright); font-family: "Playfair Display", serif; font-size: 2rem; }

.ai-intro { overflow: hidden; }
.ai-visual { position: relative; display: grid; place-items: center; min-height: 520px; }
.ai-visual::before { position: absolute; width: 430px; height: 430px; border: 1px solid rgba(212,165,111,.2); border-radius: 50%; content: ""; box-shadow: 0 0 100px rgba(185,130,79,.12); }
.ai-visual__frame { position: relative; z-index: 2; display: grid; place-items: center; width: 260px; height: 330px; border: 1px solid var(--rb-accent); border-radius: 140px 140px 30px 30px; background: linear-gradient(145deg, rgba(212,165,111,.18), rgba(0,0,0,.55)); box-shadow: inset 0 0 50px rgba(0,0,0,.55), var(--rb-shadow); }
.ai-visual__frame span { color: var(--rb-accent-bright); font-family: "Playfair Display", serif; font-size: 3rem; }
.ai-visual__tag { position: absolute; z-index: 3; padding: 10px 16px; border: 1px solid var(--rb-border); border-radius: 999px; background: rgba(32,33,29,.88); backdrop-filter: blur(10px); font-size: .76rem; font-weight: 800; }
.ai-visual__tag--one { top: 20%; left: 6%; }
.ai-visual__tag--two { top: 42%; right: 2%; }
.ai-visual__tag--three { bottom: 15%; left: 14%; }

.event-card { display: grid; grid-template-columns: auto 1fr; gap: 22px; padding: 25px; border: 1px solid var(--rb-border); border-radius: var(--rb-radius); background: var(--rb-panel); }
.event-card__date { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 78px; height: 88px; border: 1px solid rgba(212,165,111,.35); border-radius: 12px; color: var(--rb-accent-bright); }
.event-card__date strong { font-family: "Playfair Display", serif; font-size: 2rem; line-height: 1; }
.event-card__date span { margin-top: 7px; color: var(--rb-muted); font-size: .7rem; }
.event-card .eyebrow { margin-bottom: 8px; }
.event-card h3 { font-size: 1.45rem; }
.event-card p { margin-bottom: 0; font-size: .86rem; }

.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.process-card { padding: 30px 24px; border-top: 1px solid var(--rb-accent); background: linear-gradient(180deg, rgba(185,130,79,.1), transparent 70%); }
.process-card > span { color: var(--rb-accent-bright); font-family: "Playfair Display", serif; font-size: 2.4rem; }
.process-card h3 { margin-top: 32px; font-size: 1.4rem; }
.process-card p { margin: 0; font-size: .86rem; }
.testimonial { margin: 0; padding: 32px; border: 1px solid var(--rb-border); border-radius: var(--rb-radius); background: var(--rb-panel); }
.testimonial p { color: var(--rb-text); font-family: "Playfair Display", serif; font-size: 1.25rem; line-height: 1.6; }
.testimonial cite { color: var(--rb-accent-bright); font-size: .76rem; font-style: normal; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.final-cta { padding: clamp(85px, 12vw, 160px) 0; text-align: center; background: radial-gradient(circle at 50% 15%, rgba(185,130,79,.2), transparent 28%), #0a0b09; }
.final-cta__inner { max-width: 900px; }
.final-cta h2 { font-size: clamp(2.7rem, 5vw, 5.4rem); }

.page-hero { position: relative; overflow: hidden; background: radial-gradient(circle at 78% 20%, rgba(185,130,79,.22), transparent 25%), linear-gradient(125deg, #0b0c0a, #1b1c18); }
.page-hero::after { position: absolute; inset: 0; content: ""; background-image: radial-gradient(rgba(255,255,255,.06) .55px, transparent .55px); background-size: 8px 8px; opacity: .18; }
.page-hero > .container, .page-hero__grid { position: relative; z-index: 1; }
.page-hero--compact { padding: clamp(120px, 15vw, 210px) 0 clamp(70px, 9vw, 120px); }
.page-hero--compact h1 { max-width: 1000px; font-size: clamp(3rem, 6vw, 6rem); }
.page-hero--compact p { max-width: 700px; font-size: 1.05rem; }
.page-hero--article { padding: clamp(120px, 15vw, 210px) 0 80px; }
.page-hero--article h1 { font-size: clamp(2.8rem, 5vw, 5.6rem); }
.page-hero--ai { padding: clamp(120px, 15vw, 200px) 0 90px; }
.page-hero__grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 80px; }
.ai-security-badge { display: flex; flex-direction: column; gap: 6px; padding: 30px; border: 1px solid rgba(212,165,111,.3); border-radius: var(--rb-radius); background: rgba(17,18,16,.65); backdrop-filter: blur(12px); }
.ai-security-badge > span { font-size: 2rem; }
.ai-security-badge small { color: var(--rb-muted); }

.entry-content { color: var(--rb-text-soft); }
.entry-content > *:first-child { margin-top: 0; }
.entry-content h2, .entry-content h3 { margin-top: 1.5em; color: var(--rb-text); }
.entry-content a { color: var(--rb-accent-bright); text-decoration: underline; text-underline-offset: 3px; }
.entry-content ul, .entry-content ol { padding-left: 1.4em; }
.entry-content blockquote { margin: 2em 0; padding-left: 24px; border-left: 3px solid var(--rb-accent); color: var(--rb-text); font-family: "Playfair Display", serif; font-size: 1.3rem; }
.article-featured-image { margin-top: -40px; position: relative; z-index: 2; }
.article-featured-image img { width: 100%; max-height: 640px; object-fit: cover; border-radius: var(--rb-radius); }
.article-cta { padding: 70px 0; background: var(--rb-bg-soft); }
.pagination { margin-top: 55px; }
.pagination .nav-links { display: flex; gap: 8px; }
.pagination a, .pagination span { display: grid; place-items: center; min-width: 44px; height: 44px; padding: 0 12px; border: 1px solid var(--rb-border); border-radius: 999px; }
.pagination .current { color: var(--rb-dark); background: var(--rb-accent-bright); }
.empty-state { padding: 70px; border: 1px dashed var(--rb-border); border-radius: var(--rb-radius); text-align: center; }

.detail-hero { position: relative; min-height: 700px; overflow: hidden; display: flex; align-items: flex-end; }
.detail-hero__media { position: absolute; inset: 0; }
.detail-hero__media img, .detail-hero__media .card-placeholder { width: 100%; height: 100%; object-fit: cover; }
.detail-hero__media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top, rgba(7,8,7,.98), rgba(7,8,7,.3) 60%, rgba(7,8,7,.5)); }
.detail-hero__content { position: relative; z-index: 2; padding-bottom: 80px; }
.detail-hero__content h1 { max-width: 900px; }
.detail-hero__content p { max-width: 650px; font-size: 1.1rem; }
.detail-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); gap: clamp(45px, 8vw, 110px); align-items: start; }
.info-panel { position: sticky; top: calc(var(--rb-header-height) + 30px); padding: 30px; border: 1px solid var(--rb-border); border-radius: var(--rb-radius); background: var(--rb-panel); }
.info-panel h2 { font-size: 1.8rem; }
.info-panel dl { margin: 0 0 22px; }
.info-panel dl > div { padding: 15px 0; border-bottom: 1px solid var(--rb-border); }
.info-panel dt { margin-bottom: 4px; color: var(--rb-muted); font-size: .72rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.info-panel dd { margin: 0; color: var(--rb-text); }
.promo-value { margin-bottom: 20px; color: var(--rb-accent-bright); font-family: "Playfair Display", serif; font-size: 4.5rem; }

.profile-hero { padding: clamp(130px, 15vw, 210px) 0 90px; background: linear-gradient(135deg, #0b0c0a, #1c1d19); }
.profile-hero__grid, .service-detail-hero__grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); align-items: center; gap: clamp(45px, 8vw, 110px); }
.profile-hero__media { aspect-ratio: .78; overflow: hidden; border-radius: 180px 180px 20px 20px; box-shadow: var(--rb-shadow); }
.profile-hero__media img, .profile-hero__media .card-placeholder { width: 100%; height: 100%; object-fit: cover; }
.profile-hero__lead { max-width: 650px; font-size: 1.1rem; }
.profile-facts { display: flex; gap: 50px; margin: 35px 0; padding: 25px 0; border-top: 1px solid var(--rb-border); border-bottom: 1px solid var(--rb-border); }
.profile-facts div { display: flex; flex-direction: column; gap: 5px; }
.profile-facts strong { color: var(--rb-accent-bright); font-family: "Playfair Display", serif; font-size: 1.7rem; }
.profile-facts span { color: var(--rb-muted); font-size: .72rem; text-transform: uppercase; }
.service-detail-hero { padding: clamp(130px, 15vw, 210px) 0 90px; }
.service-detail-hero__grid { grid-template-columns: 1fr 1fr; }
.service-detail-hero__media { aspect-ratio: 1.1; overflow: hidden; border-radius: var(--rb-radius); }
.service-detail-hero__media img, .service-detail-hero__media .card-placeholder { width: 100%; height: 100%; object-fit: cover; }
.price-display { display: flex; align-items: baseline; gap: 14px; margin: 30px 0; }
.price-display strong { color: var(--rb-accent-bright); font-family: "Playfair Display", serif; font-size: 2.8rem; }
.price-display del { color: var(--rb-muted); }
.price-display span { margin-left: auto; color: var(--rb-text-soft); }
.notice-box { margin-top: 35px; padding: 22px 24px; border: 1px solid rgba(212,165,111,.32); border-radius: var(--rb-radius-sm); background: rgba(185,130,79,.08); }
.notice-box p { margin: 0; }
.notice-text { color: var(--rb-muted); font-size: .8rem; line-height: 1.55; }

.calculator-layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(340px, .7fr); gap: clamp(35px, 6vw, 80px); align-items: start; }
.calculator-service-list { display: grid; gap: 13px; }
.calculator-service { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; padding: 22px; border: 1px solid var(--rb-border); border-radius: var(--rb-radius-sm); background: var(--rb-panel); cursor: pointer; transition: border-color 180ms ease, transform 180ms ease, background 180ms ease; }
.calculator-service:hover { transform: translateY(-2px); border-color: rgba(212,165,111,.35); }
.calculator-service:has(input:checked) { border-color: var(--rb-accent); background: rgba(185,130,79,.1); }
.calculator-service input { position: absolute; opacity: 0; pointer-events: none; }
.calculator-service__check { display: grid; place-items: center; width: 26px; height: 26px; border: 1px solid var(--rb-border); border-radius: 50%; }
.calculator-service input:checked + .calculator-service__check { color: var(--rb-dark); background: var(--rb-accent-bright); }
.calculator-service input:checked + .calculator-service__check::after { content: "✓"; font-weight: 900; }
.calculator-service__info { display: flex; flex-direction: column; }
.calculator-service__info small { color: var(--rb-muted); }
.calculator-service__price { display: flex; flex-direction: column; align-items: flex-end; }
.calculator-service__price strong { color: var(--rb-accent-bright); }
.calculator-service__price small { color: var(--rb-muted); }
.calculator-summary { position: sticky; top: calc(var(--rb-header-height) + 28px); padding: 28px; border: 1px solid var(--rb-border); border-radius: var(--rb-radius); background: var(--rb-panel); box-shadow: var(--rb-shadow); }
.calculator-summary h2 { font-size: 1.8rem; }
.calculator-summary__items { min-height: 90px; padding: 15px 0; border-top: 1px solid var(--rb-border); border-bottom: 1px solid var(--rb-border); }
.calculator-summary__item { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 0; font-size: .85rem; }
.calculator-summary__item button { border: 0; color: var(--rb-danger); background: none; }
.calculator-empty { margin: 0; color: var(--rb-muted); }
.calculator-totals { margin: 15px 0 22px; }
.calculator-totals > div { display: flex; justify-content: space-between; gap: 20px; padding: 8px 0; }
.calculator-totals dt { color: var(--rb-muted); }
.calculator-totals dd { margin: 0; }
.calculator-totals__total { margin-top: 12px; padding-top: 18px !important; border-top: 1px solid var(--rb-border); }
.calculator-totals__total dd { color: var(--rb-accent-bright); font-family: "Playfair Display", serif; font-size: 1.7rem; }

.integration-notice { margin-bottom: 35px; padding: 22px 25px; border-left: 3px solid var(--rb-accent); border-radius: 0 var(--rb-radius-sm) var(--rb-radius-sm) 0; background: var(--rb-panel); }
.integration-notice p { margin: 7px 0 0; font-size: .88rem; }
.integration-notice--compact { margin-bottom: 25px; }
.booking-plugin-shell { padding: 30px; border: 1px solid var(--rb-border); border-radius: var(--rb-radius); background: var(--rb-panel); }
.booking-wizard { padding: clamp(24px, 4vw, 48px); border: 1px solid var(--rb-border); border-radius: var(--rb-radius); background: var(--rb-panel); }
.booking-steps { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; margin: 0 0 55px; padding: 0; list-style: none; }
.booking-steps li { position: relative; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--rb-muted); font-size: .69rem; font-weight: 800; letter-spacing: .04em; text-align: center; text-transform: uppercase; }
.booking-steps li::after { position: absolute; top: 17px; left: calc(50% + 24px); width: calc(100% - 48px); height: 1px; content: ""; background: var(--rb-border); }
.booking-steps li:last-child::after { display: none; }
.booking-steps span { position: relative; z-index: 2; display: grid; place-items: center; width: 35px; height: 35px; border: 1px solid var(--rb-border); border-radius: 50%; background: var(--rb-panel); }
.booking-steps li.is-active, .booking-steps li.is-complete { color: var(--rb-text); }
.booking-steps li.is-active span, .booking-steps li.is-complete span { color: var(--rb-dark); background: var(--rb-accent-bright); border-color: var(--rb-accent-bright); }
.booking-panel { display: none; }
.booking-panel.is-active { display: block; animation: rbFadeUp 300ms ease both; }
.selection-grid { display: grid; gap: 15px; }
.selection-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.selection-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.selection-card { position: relative; display: flex; flex-direction: column; gap: 7px; min-height: 150px; padding: 23px; border: 1px solid var(--rb-border); border-radius: var(--rb-radius-sm); background: var(--rb-bg-soft); cursor: pointer; transition: transform 180ms ease, border-color 180ms ease, background 180ms ease; }
.selection-card:hover { transform: translateY(-3px); border-color: rgba(212,165,111,.38); }
.selection-card:has(input:checked) { border-color: var(--rb-accent); background: rgba(185,130,79,.1); }
.selection-card.is-hidden { display: none; }
.selection-card input { position: absolute; opacity: 0; pointer-events: none; }
.selection-card__check { position: absolute; top: 16px; right: 16px; display: grid; place-items: center; width: 23px; height: 23px; border: 1px solid var(--rb-border); border-radius: 50%; color: transparent; }
.selection-card:has(input:checked) .selection-card__check { color: var(--rb-dark); background: var(--rb-accent-bright); }
.selection-card > span:not(.selection-card__check) { color: var(--rb-text-soft); font-size: .86rem; }
.selection-card small { color: var(--rb-muted); line-height: 1.5; }
.selection-card--barber { align-items: center; text-align: center; }
.barber-avatar { width: 86px; height: 86px; margin-bottom: 7px; overflow: hidden; border-radius: 50%; background: var(--rb-panel-2); }
.barber-avatar img, .barber-avatar .card-placeholder { width: 100%; height: 100%; min-height: 0; object-fit: cover; }
.barber-avatar--any { display: grid; place-items: center; color: var(--rb-accent-bright); font-family: "Playfair Display", serif; font-size: 2.2rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.form-grid label { display: flex; flex-direction: column; gap: 8px; }
.form-grid label > span { color: var(--rb-text-soft); font-size: .82rem; font-weight: 700; }
.form-grid__full { grid-column: 1 / -1; }
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], input[type="time"], input[type="number"], input[type="url"], select, textarea {
  width: 100%; min-height: 52px; padding: 13px 15px; border: 1px solid var(--rb-border); border-radius: 8px; color: var(--rb-text); background: var(--rb-bg-soft); outline: none; transition: border-color 180ms ease, box-shadow 180ms ease;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--rb-accent); box-shadow: 0 0 0 3px rgba(185,130,79,.13); }
.checkbox-field { display: flex !important; flex-direction: row !important; align-items: flex-start; gap: 11px !important; }
.checkbox-field input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 4px; accent-color: var(--rb-accent-bright); }
.checkbox-field a { color: var(--rb-accent-bright); text-decoration: underline; }
.booking-navigation, .ai-form-navigation { display: flex; justify-content: space-between; gap: 15px; margin-top: 38px; padding-top: 25px; border-top: 1px solid var(--rb-border); }
.booking-error { min-height: 24px; margin: 13px 0 0; color: var(--rb-danger); font-size: .85rem; }
.booking-review { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 13px; margin-bottom: 25px; }
.booking-review__item { padding: 18px; border: 1px solid var(--rb-border); border-radius: var(--rb-radius-sm); background: var(--rb-bg-soft); }
.booking-review__item span { display: block; color: var(--rb-muted); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.booking-review__item strong { display: block; margin-top: 5px; }

.ai-consultant { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: clamp(35px, 6vw, 80px); align-items: start; }
.ai-form-panel { padding: clamp(24px, 4vw, 46px); border: 1px solid var(--rb-border); border-radius: var(--rb-radius); background: var(--rb-panel); }
.ai-form-step { display: none; }
.ai-form-step.is-active { display: block; animation: rbFadeUp 300ms ease both; }
.ai-upload { position: relative; display: grid; place-items: center; min-height: 330px; margin-top: 25px; padding: 30px; border: 1px dashed rgba(212,165,111,.45); border-radius: var(--rb-radius); background: var(--rb-bg-soft); text-align: center; cursor: pointer; overflow: hidden; }
.ai-upload input { position: absolute; opacity: 0; }
.ai-upload__icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 15px; border: 1px solid var(--rb-accent); border-radius: 50%; color: var(--rb-accent-bright); font-size: 1.7rem; }
.ai-upload strong { font-family: "Playfair Display", serif; font-size: 1.4rem; }
.ai-upload small { color: var(--rb-muted); }
.ai-upload img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 12px; background: var(--rb-bg-soft); }
.ai-result { display: grid; grid-template-columns: .72fr 1.28fr; gap: 28px; }
.ai-result__score { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 260px; padding: 28px; border: 1px solid rgba(212,165,111,.35); border-radius: var(--rb-radius); background: radial-gradient(circle at 50% 25%, rgba(185,130,79,.18), transparent 35%), var(--rb-bg-soft); text-align: center; }
.ai-result__score span, .ai-result__score small { color: var(--rb-muted); }
.ai-result__score strong { margin: 12px 0; color: var(--rb-accent-bright); font-family: "Playfair Display", serif; font-size: 3.2rem; }
.recommendation-list { display: grid; gap: 10px; }
.recommendation-item { padding: 15px; border-left: 2px solid var(--rb-accent); background: var(--rb-bg-soft); }
.recommendation-item strong { display: block; }
.recommendation-item span { color: var(--rb-muted); font-size: .82rem; }
.ai-side-panel { position: sticky; top: calc(var(--rb-header-height) + 30px); padding: 30px; border: 1px solid var(--rb-border); border-radius: var(--rb-radius); background: var(--rb-bg-soft); }
.check-list { display: grid; gap: 12px; margin: 25px 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 27px; color: var(--rb-text-soft); }
.check-list li::before { position: absolute; left: 0; color: var(--rb-accent-bright); content: "✓"; font-weight: 900; }
.privacy-card { padding: 20px; border-radius: var(--rb-radius-sm); background: var(--rb-panel); }
.privacy-card p { margin: 7px 0 0; font-size: .82rem; }

.site-footer { padding: 80px 0 25px; border-top: 1px solid var(--rb-border); background: #090a08; }
.site-footer__grid { display: grid; grid-template-columns: 1.35fr .75fr .75fr 1fr; gap: 50px; }
.site-footer h3 { font-size: 1.25rem; }
.site-footer p, .site-footer a { color: var(--rb-text-soft); font-size: .88rem; }
.site-footer a:hover { color: var(--rb-accent-bright); }
.brand-mark--footer { margin-bottom: 22px; }
.footer-menu { margin: 0; padding: 0; list-style: none; }
.footer-menu li { margin-bottom: 8px; }
.footer-widgets { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 30px; margin-top: 50px; padding-top: 35px; border-top: 1px solid var(--rb-border); }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 22px; border-top: 1px solid var(--rb-border); color: var(--rb-muted); font-size: .74rem; }

.error-page { display: grid; place-items: center; min-height: 80vh; padding: 130px 0 80px; text-align: center; background: radial-gradient(circle at 50% 30%, rgba(185,130,79,.2), transparent 25%), var(--rb-bg); }
.error-page__inner { max-width: 850px; }
.error-page__code { display: block; color: rgba(212,165,111,.18); font-family: "Playfair Display", serif; font-size: clamp(8rem, 25vw, 20rem); line-height: .7; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes rbFadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

@media (max-width: 1180px) {
  .site-header__inner { grid-template-columns: auto auto 1fr; }
  .menu-toggle { display: block; order: 3; justify-self: end; }
  .site-header__actions { justify-self: end; }
  .site-header__actions .language-switcher, .site-header__actions .header-phone { display: none; }
  .primary-navigation { position: fixed; top: var(--rb-header-height); right: 0; bottom: 0; left: 0; display: none; padding: 40px; background: rgba(9,10,8,.98); }
  .admin-bar .primary-navigation { top: calc(var(--rb-header-height) + 32px); }
  .primary-navigation.is-open { display: block; }
  .primary-navigation .menu { flex-direction: column; align-items: flex-start; gap: 24px; }
  .primary-navigation a { font-family: "Playfair Display", serif; font-size: 2rem; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .card-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 900px) {
  .split-layout, .page-hero__grid, .profile-hero__grid, .service-detail-hero__grid, .detail-grid, .calculator-layout, .ai-consultant { grid-template-columns: 1fr; }
  .split-layout { gap: 35px; }
  .card-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .branch-card { grid-template-columns: 1fr; }
  .branch-card__media { aspect-ratio: 1.5; }
  .info-panel, .calculator-summary, .ai-side-panel { position: static; }
  .profile-hero__media { max-width: 580px; }
  .service-detail-hero__media { order: -1; }
  .booking-steps { overflow-x: auto; grid-template-columns: repeat(6, minmax(110px,1fr)); padding-bottom: 12px; }
  .selection-grid--3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ai-result { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --rb-header-height: 70px; }
  .container { width: min(calc(100% - 28px), var(--rb-container)); }
  body { padding-bottom: 68px; }
  .section { padding: 72px 0; }
  h1 { font-size: clamp(2.65rem, 14vw, 4.8rem); }
  h2 { font-size: clamp(2rem, 10vw, 3.2rem); }
  .site-header__actions { display: none; }
  .site-header__inner { grid-template-columns: 1fr auto; }
  .menu-toggle { order: initial; }
  .brand-mark__text { font-size: 1rem; }
  .brand-mark__icon { width: 38px; height: 38px; }
  .announcement-bar__inner { padding-right: 32px; }
  .announcement-bar__content { flex-wrap: wrap; gap: 5px 9px; font-size: .72rem; }
  .announcement-bar__close { right: 7px; }
  .mobile-booking-button { position: fixed; right: 10px; bottom: 10px; left: 10px; z-index: 999; display: flex; align-items: center; justify-content: center; height: 50px; border-radius: 999px; color: var(--rb-dark); background: var(--rb-accent-bright); box-shadow: 0 15px 40px rgba(0,0,0,.45); font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
  .mobile-booking-button:hover { color: var(--rb-dark); }
  .hero { min-height: 760px; }
  .hero__content { padding-top: 150px; padding-bottom: 45px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.7rem); }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; margin-top: 52px; }
  .hero__stats strong { font-size: 1.35rem; }
  .hero__stats span { font-size: .6rem; }
  .hero__media::before { top: 25%; right: -28%; width: 80vw; opacity: .6; }
  .hero__media::after { display: none; }
  .promotion-highlight__inner, .promotion-highlight__meta { align-items: flex-start; flex-direction: column; }
  .promotion-highlight__meta { gap: 10px; }
  .card-grid--2, .card-grid--3, .card-grid--4, .process-grid, .selection-grid--2, .selection-grid--3, .form-grid, .booking-review { grid-template-columns: 1fr; }
  .branch-card__actions { align-items: flex-start; flex-direction: column; }
  .ai-visual { min-height: 400px; transform: scale(.85); }
  .event-card { grid-template-columns: 1fr; }
  .event-card__date { width: 70px; }
  .profile-facts { flex-direction: column; gap: 18px; }
  .price-display { align-items: flex-start; flex-direction: column; }
  .price-display span { margin-left: 0; }
  .calculator-service { grid-template-columns: auto 1fr; }
  .calculator-service__price { grid-column: 2; align-items: flex-start; }
  .booking-wizard, .ai-form-panel { padding: 20px; }
  .form-grid__full { grid-column: auto; }
  .site-footer__grid, .footer-widgets { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; }
  .error-page__code { font-size: 9rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
