/*
Theme Name: Praha masáže
Template: generatepress
Version: 1.0
Description: Custom child theme pro masážní studio – tmavý, elegantní, luxury wellness vibe.
Author: Praha masáže
Text Domain: prahamasaze
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Barvy – přesně z Pencil designu */
  --color-bg:              #0A0A0A;
  --color-surface:         #141414;
  --color-card:            #1A1A1A;
  --color-border:          #2A2520;
  --color-border-subtle:   #1A1815;
  --color-gold:            #C9A962;
  --color-gold-dim:        rgba(201, 169, 98, 0.25);
  --color-text:            #F5F0E8;
  --color-text-secondary:  #A09888;
  --color-text-muted:      #6A6058;

  /* Typografie */
  --font-body:    'Inter', sans-serif;
  --font-heading: 'Cormorant Garamond', serif;

  /* Spacing */
  --section-padding-y:  100px;
  --section-padding-x:  80px;
  --container-width:    1280px;

  /* Přechody */
  --transition: 0.25s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background-color: var(--color-bg);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

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

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

/* Genertepress reset */
body .site-content,
body .site-main,
body .site-inner,
body .content-area,
body .entry,
body .entry-content,
body .inside-article {
  background: transparent;
}

/* GP separate-containers override */
.separate-containers .inside-article,
.separate-containers .comments-area,
.separate-containers .page-header,
.one-container .container,
.separate-containers .paging-navigation,
.inside-page-header {
  background-color: transparent;
}

/* ============================================================
   UTILITY – pm-card
   ============================================================ */
.pm-card {
  padding: 32px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

/* ============================================================
   TYPOGRAFICKÉ TŘÍDY
   ============================================================ */
.heading-serif {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text);
}

h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 26px; }
h4 { font-size: 20px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.pm-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
}

.pm-section {
  padding: var(--section-padding-y) var(--section-padding-x);
  width: 100%;
}

.pm-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 56px;
}

.pm-section-header h2 {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.1;
}

.pm-section-header p {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-text-secondary);
  max-width: 540px;
}

.pm-section-header a {
  text-decoration: underline;
}

.pm-section-header a:hover {
  color: var(--color-text);
}

.pm-divider {
  width: 60px;
  height: 1px;
  background: var(--color-border);
}

/* ============================================================
   TLAČÍTKA
   ============================================================ */
.pm-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: none;
}

.pm-btn-gold {
  background: var(--color-gold);
  color: #0A0A0A;
}

.pm-btn-gold:hover {
  background: #d4b470;
  color: #0A0A0A;
  transform: translateY(-1px);
}

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

.pm-btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.pm-btn svg,
.pm-btn .dashicons {
  width: 16px;
  height: 16px;
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-subtle);
  transition: background var(--transition), box-shadow var(--transition);
}

#site-header.scrolled {
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-logo img {
  height: 37px;
  width: auto;
}

.site-logo-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-logo-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--color-text);
  text-transform: uppercase;
}

.site-logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .site-logo-sub {
    display: none;
  }
}

/* Pravá strana headeru */
.header-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Telefonní číslo v headeru */
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-secondary);
  font-size: 13px;
  text-decoration: none;
  transition: color var(--transition);
}

.header-phone svg {
  color: var(--color-gold);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.header-phone:hover {
  color: var(--color-text);
}

.header-divider {
  width: 1px;
  height: 20px;
  background: var(--color-border);
}

/* Navigace */
#site-header nav {
  display: flex;
  align-items: center;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav a {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.header-nav a:hover,
.header-nav .current-menu-item > a {
  color: var(--color-text);
}

.header-nav a:hover::after,
.header-nav .current-menu-item > a::after {
  width: 100%;
}

/* Sociální ikony v headeru */
.header-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-social a {
  color: var(--color-text-secondary);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}

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

.header-social svg {
  width: 18px;
  height: 18px;
}

/* Hamburger – mobilní */
.header-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
}

.header-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--color-text);
  transition: all var(--transition);
}

/* ============================================================
   HERO SEKCE
   ============================================================ */
#hero {
  position: relative;
  height: 780px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
      rgba(10, 10, 10, 0.91) 0%,
      rgba(10, 10, 10, 0.69) 50%,
      rgba(10, 10, 10, 0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 72px; /* výška headeru */
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  color: var(--color-gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  width: fit-content;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.05;
  max-width: 680px;
}

.hero-subline {
  font-size: 17px;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 560px;
}

/* ============================================================
   SEKCE SLUŽBY
   ============================================================ */
#services {
  background: var(--color-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  border-color: var(--color-gold-dim);
  transform: translateY(-4px);
}

.service-card .is-layout-flow {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-image {
  height: 200px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.04);
}

.service-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-text);
}

.service-card-body p:not(.service-card-price) {
  font-size: 13px;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex: 1;
}

.service-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-card-price {
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 700;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 500;
  transition: gap var(--transition);
}

.service-card-link:hover {
  gap: 10px;
}

.service-card-link svg {
  width: 14px;
  height: 14px;
}

.services-cta {
  display: flex;
  justify-content: center;
}

/* ============================================================
   SEKCE TERAPEUT
   ============================================================ */
#therapist {
  background: var(--color-surface);
}

.therapist-inner {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
}

.therapist-photo {
  position: relative;
  height: 560px;
  overflow: hidden;
}

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

.therapist-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-border);
  pointer-events: none;
}

.therapist-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.therapist-name {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.1;
}

.therapist-role {
  font-size: 15px;
  color: var(--color-gold);
}

.therapist-bio {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.75;
}

.therapist-stats {
  display: flex;
  gap: 48px;
}

.therapist-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.therapist-stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--color-gold);
  line-height: 1;
}

.therapist-stat-label {
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================================
   SEKCE REFERENCE
   ============================================================ */
#reviews {
  background: var(--color-surface);
}

.reviews-rating-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.reviews-google-badge {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
}

.reviews-stars {
  display: flex;
  gap: 4px;
  color: #FBBF24;
}

.reviews-stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.reviews-score {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
}

.reviews-count {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text-secondary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card-stars {
  display: flex;
  gap: 4px;
  color: #FBBF24;
}

.review-card-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.review-card-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex: 1;
}

.review-card-author {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
}

.reviews-note {
  text-align: center;
  font-size: 12px;
  font-style: italic;
  color: var(--color-text-muted);
  margin-top: 32px;
}

/* ============================================================
   SEKCE INSTAGRAM
   ============================================================ */
#instagram {
  background: var(--color-surface);
}

.insta-header {
  text-align: center;
  margin-bottom: 48px;
}

.insta-handle {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-top: 8px;
}

.insta-grid-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 48px;
}

.insta-grid-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.insta-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-card);
}

.insta-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insta-thumb:hover img {
  transform: scale(1.06);
}

.sb_instagram_header {
  display: flex !important;
  align-items: center !important;
  flex-direction: column !important;
}

/* Smash Balloon override */
.sbi_follow_btn,
#sbi .sbi_follow_btn a {
  background: transparent !important;
  border: 1px solid var(--color-gold-dim) !important;
  color: var(--color-gold) !important;
  font-family: var(--font-body) !important;
}

.insta-cta {
  display: flex;
  justify-content: center;
}

/* ============================================================
   SEKCE KONTAKT
   ============================================================ */
#kontakty {
  background: var(--color-bg);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 400;
  color: var(--color-text);
}

.contact-info-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
}

.contact-item-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-item-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.contact-item-value {
  font-size: 15px;
  color: var(--color-text);
}

.contact-item-value a {
  color: var(--color-text);
  transition: color var(--transition);
}

.contact-item-value a:hover {
  color: var(--color-gold);
}

.map-embed {
  height: 420px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: start;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================================
   PATIČKA
   ============================================================ */
#site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-subtle);
}

.footer-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 48px var(--section-padding-x);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-logo-mark {
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-logo-text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--color-text);
  text-transform: uppercase;
}

.footer-logo-sub {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  color: var(--color-text-secondary);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}

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

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-divider {
  height: 1px;
  background: var(--color-border);
}

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

.footer-copyright {
  font-size: 12px;
  color: var(--color-text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 12px;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-text-secondary);
}

/* ============================================================
   PAGE TEMPLATES
   ============================================================ */

/* Sdílená hlavička podstránek */
.pm-page-hero {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 140px var(--section-padding-x) 60px;
}

.pm-page-hero h1 {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 16px;
}

.pm-page-hero p {
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text-secondary);
  max-width: 520px;
  line-height: 1.7;
}

.pm-page-content {
  padding: var(--section-padding-y) var(--section-padding-x);
  max-width: var(--container-width);
  margin: 0 auto;
}

/* ---- Stránka masáže ---- */
.masaze-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 1024px) {
  .masaze-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.masaze-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.masaze-item:hover {
  border-color: var(--color-gold-dim);
  transform: translateY(-3px);
}

.masaze-item-image {
  height: 220px;
  overflow: hidden;
}

.masaze-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.masaze-item:hover .masaze-item-image img {
  transform: scale(1.04);
}

.masaze-item-body {
  padding: 28px;
}

.masaze-item-body h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-text);
  margin-bottom: 12px;
}

.masaze-item-body p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.masaze-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--color-border-subtle);
}

.masaze-price {
  color: var(--color-gold);
  font-size: 18px;
  font-weight: 500;
}

.masaze-duration {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ---- Ceník ---- */
.cenik-table {
  width: 100%;
  border-collapse: collapse;
}

.cenik-table th,
.cenik-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.cenik-table thead th {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 500;
}

.cenik-table tbody tr {
  transition: background var(--transition);
}

.cenik-table tbody tr:hover {
  background: var(--color-surface);
}

.cenik-table td:last-child {
  color: var(--color-gold);
  font-weight: 500;
  text-align: right;
}

.cenik-table td:first-child {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-text);
}

.cenik-section-title {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--color-text);
  margin: 48px 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

/* ---- Akce / Slevy ---- */
.akce-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.akce-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.akce-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-gold);
}

.akce-badge {
  display: inline-block;
  background: var(--color-gold);
  color: #0A0A0A;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 12px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.akce-card h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-text);
  margin-bottom: 12px;
}

.akce-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}

.akce-validity {
  font-size: 12px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   GUTENBERG BLOCK OVERRIDES
   ============================================================ */
.wp-block-group {
  background: transparent;
}

.wp-block-cover {
  min-height: 60vh;
}

/* Hero – vycentrování obsahu cover bloku */
.hero-section .wp-block-cover__inner-container {
  text-align: center;
  align-items: center;
}

.hero-section .hero-tag,
.hero-section .hero-headline,
.hero-section .hero-subline {
  margin-left: auto;
  margin-right: auto;
}

.hero-section .wp-block-buttons {
  justify-content: center;
}

/* Reset – pm-btn/pm-btn-gold jsou navrženy pro <a>, ne pro wrapper div */
.wp-block-button.pm-btn,
.wp-block-button.pm-btn-gold,
.wp-block-button.pm-btn-outline {
  background: transparent;
  padding: 0;
  border: none;
  display: inline-flex;
}

/* Zlaté tlačítko – override WP výchozích button stylů */
.wp-block-button.pm-btn-gold .wp-block-button__link,
.wp-block-button.pm-btn-gold .wp-element-button {
  background-color: var(--color-gold);
  color: #0A0A0A;
  border: none;
  border-radius: 6px;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  transition: background var(--transition);
}

.wp-block-button.pm-btn-gold .wp-block-button__link:hover,
.wp-block-button.pm-btn-gold .wp-element-button:hover {
  background-color: #d4b470;
  color: #0A0A0A;
}

/* Outline tlačítko (Instagram sekce) */
.wp-block-button.pm-btn-outline .wp-block-button__link,
.wp-block-button.pm-btn-outline .wp-element-button {
  background-color: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold-dim);
  border-radius: 6px;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  transition: border-color var(--transition), color var(--transition);
}

.wp-block-button.pm-btn-outline .wp-block-button__link:hover,
.wp-block-button.pm-btn-outline .wp-element-button:hover {
  border-color: var(--color-gold);
  background-color: transparent;
  color: var(--color-gold);
}

/* ============================================================
   HOMEPAGE – GUTENBERG SEKČNÍ TŘÍDY
   Přidej tyto CSS třídy do Group bloků přes "Additional CSS class"
   ============================================================ */
.homepage {
  background: var(--color-bg);
}

/* Hero sekce */
.hero-section {
  background: var(--color-bg);
}

/* Služby */
.services-section {
  background: var(--color-bg);
  padding: var(--section-padding-y) var(--section-padding-x);
}

/* Služby */
.booking-section {
  background: var(--color-bg);
  padding: var(--section-padding-y) 0;
  background: linear-gradient(190deg, rgba(26, 26, 26, 0.5) 0%, rgba(20, 20, 20, 0) 55%);
}

/* Terapeut – tmavší povrch */
.therapist-section {
  background: var(--color-surface);
  padding: var(--section-padding-y) var(--section-padding-x);
}

/* Reference */
.reviews-section {
  background: var(--color-surface);
  padding: var(--section-padding-y) var(--section-padding-x);
}

/* Instagram */
.instagram-section {
  background: var(--color-bg);
  padding: var(--section-padding-y) var(--section-padding-x);
}

/* Kontakt */
.contact-section {
  background: var(--color-bg);
  padding: var(--section-padding-y) var(--section-padding-x);
}

.privacy-section {
  padding: var(--section-padding-y) 0;
  background: linear-gradient(190deg, rgba(26, 26, 26, 0.5) 0%, rgba(20, 20, 20, 0) 55%);
}

/* ============================================================
   PROMO KARTY
   ============================================================ */
.promo-section {
  padding: var(--section-padding-y) 0 0 0;
  background: linear-gradient(190deg, rgba(26, 26, 26, 0.5) 0%, rgba(20, 20, 20, 0) 55%);
}

.promo-grid {
  gap: 24px !important;
  align-items: stretch;
}

.promo-grid > .wp-block-column {
  display: flex;
  flex-direction: column;
}

.promo-card {
  padding: 26px 22px;
  border: 1px solid var(--color-gold-dim);
  display: flex;
  flex-direction: column;
  gap: 16px !important;
  height: 100%;
}

.promo-card-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.promo-card-icon svg {
  width: 22px;
  height: 22px;
}

.promo-card-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
}

.promo-card-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text);
  text-align: left;
}

.promo-card-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.7;
  flex: 1;
}

.promo-card .wp-block-buttons {
  margin-top: auto;
}

.promo-warning {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.75;
  text-align: center;
}

.privacy-section li {
  color: var(--color-text-secondary);
}

/* ============================================================
   DETAIL MASÁŽE
   ============================================================ */
.masaz-detail {
  padding: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  width: 100%;
  height: 100%;
  gap: 0 !important;
}

.masaz-detail-title {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  padding-bottom: 10px;
  color: var(--color-gold);
}

.masaz-detail-perex {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.6;
  padding-bottom: 10px;
}

/* Řádky hodnot */
.masaz-detail-row {
  font-size: 14px;
  font-weight: 400;
  width: 100%;
  color: var(--color-text-secondary);
  padding: 10px 0 0;
  border-top: 1px solid var(--color-border);
  margin-top: auto !important;
}

.masaz-detail-akce-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 16px;
  margin-bottom: 0;
}

.masaz-detail-row-akce {
  color: var(--color-gold);
  border-top: none;
  margin-top: 0;
}

/* Mřížka – uživatel skládá sám přes Gutenberg columns */
.masaze-grid-section {
  padding: var(--section-padding-y) var(--section-padding-x);
}

.masaze-grid {
  gap: 24px !important;
  align-items: stretch;
}

.masaze-grid > .wp-block-column {
  display: flex;
  flex-direction: column;
}

.rc-anchor {
  display: none !important;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1280px) {
  :root {
    --section-padding-x: 40px;
  }
}

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

  .therapist-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .therapist-photo {
    height: 420px;
  }

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

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

  .insta-grid-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding-x: 24px;
    --section-padding-y: 64px;
  }

  .header-phone,
  .header-divider:not(:last-of-type) {
    display: none;
  }

  .header-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
  }

  .header-nav.is-open {
    display: flex;
  }

  .header-nav li {
    width: 100%;
  }

  .header-nav a {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
  }

  .header-nav a::after {
    display: none;
  }

  .header-toggle {
    display: flex;
  }

  .hero-headline {
    font-size: 48px;
  }

  .hero-subline {
    font-size: 15px;
  }

  #hero {
    height: 640px;
  }

  .pm-section-header h2 {
    font-size: 34px;
  }

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

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

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

  .therapist-stats {
    gap: 32px;
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 38px;
  }

  .pm-btn {
    padding: 16px 28px;
  }

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