/*
  Institut Štěstí - minimalistický wellbeing styl
  Barevná paleta: béžová, krémová, tlumeně zelená
*/

:root {
  --bg: #f6f2e9;
  --surface: #ffffff;
  --text: #3e4a3f;
  --text-muted: #667263;
  --primary: #6f826a;
  --primary-dark: #536250;
  --border: #ded7c8;
  --shadow: 0 12px 30px rgba(78, 95, 73, 0.11);
  --radius-lg: 3px;
  --container: 1140px;
  --accent-yellow: #ffcb00;
  --card-pad: 1.05rem;
  --card-pad-sm: 0.95rem;
  --card-pad-lg: 1.15rem;
  --media-pad: 0.45rem;
  --media-pad-lg: 0.6rem;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  color: var(--text);
  background: linear-gradient(180deg, #f8f5ee 0%, #f5f0e5 100%);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

main {
  flex: 1;
  padding-top: 1.4rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.6rem;
  font-family: "Outfit", "Manrope", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #2f3a30;
}

h3 {
  font-size: 0.98rem;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

.container {
  width: min(var(--container), 92%);
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.page-section {
  margin-top: 1.15rem;
}

/* Default spacing for all content sections */
.panel {
  position: relative;
  overflow: hidden;
  border: 2px solid #e3dac8;
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(65, 78, 62, 0.06);
  padding: clamp(18px, 2vw, 26px);
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 12px;
  background: linear-gradient(165deg, #17382b, #0f2a1f);
}

.section-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.section-duo .page-section {
  margin-top: 1.15rem;
}

main > .panel + .panel {
  margin-top: 1.15rem;
}

/* Shared spacing utilities */
.pad-box {
  padding: var(--card-pad) !important;
}

.pad-box--sm {
  padding: var(--card-pad-sm) !important;
}

.pad-box--lg {
  padding: var(--card-pad-lg) !important;
}

.media-pad {
  padding: var(--media-pad) !important;
}

.media-pad--lg {
  padding: var(--media-pad-lg) !important;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.55;
}

.bg-shape--left {
  top: -120px;
  left: -100px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle at 30% 30%, #ece3d0, #d8dbc7);
}

.bg-shape--right {
  right: -140px;
  bottom: 8%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle at 40% 40%, #ede2cb, #cfd7bf);
}

/* Sticky hlavička */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(20, 52, 39, 0.92);
  border-bottom: 1px solid rgba(150, 178, 155, 0.35);
}

.navbar {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  white-space: nowrap;
  color: #edf6ee;
}

.logo-image {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu > li > a {
  color: #dceadf;
  transition: color 0.25s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0;
}

.nav-menu > li > a:visited {
  color: #dceadf;
}

.nav-menu > li > a:hover {
  color: #ffffff;
}

.nav-home {
  width: 34px;
  height: 34px;
  display: inline-grid !important;
  place-items: center;
  border: 1px solid rgba(220, 234, 223, 0.24);
  background: rgba(255, 255, 255, 0.04);
}

.nav-home-label {
  display: none;
}

.nav-active {
  color: #f3e7cf !important;
  font-weight: 700;
}

.nav-active::after,
.nav-current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.7rem;
  height: 2px;
  background: #f3e7cf;
  border-radius: 2px;
}

.nav-active:visited,
.nav-active:hover {
  color: #f3e7cf !important;
}

.nav-cta {
  padding: 0.7rem 1.8rem;
  border: 1px solid #cc9f00;
  border-radius: 3px;
  background: var(--accent-yellow);
  color: #4a3b00 !important;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(177, 141, 0, 0.18);
}

.nav-cta:visited,
.nav-cta:hover {
  color: #4a3b00 !important;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a i {
  font-size: 0.7rem;
  opacity: 0.9;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 0;
  min-width: 250px;
  padding: 0.45rem;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 0.18rem;
  background: #fcf7ee;
  border: 1px solid #dfd2bb;
  border-radius: 3px;
  box-shadow: 0 18px 28px rgba(17, 38, 29, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 30;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-submenu a {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: 3px;
  color: #274034;
  line-height: 1.35;
}

.nav-submenu a:hover {
  background: #f1e6d2;
  color: #1b2f25;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(150, 178, 155, 0.4);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: #edf6ee;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */
.hero {
  padding-top: 0;
  padding-bottom: 0;
  display: grid;
  grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  background: #ffffff;
  border: 2px solid #e3dac8;
  border-radius: 3px;
  box-shadow: 0 6px 16px rgba(65, 78, 62, 0.06);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: linear-gradient(165deg, #17382b, #0f2a1f);
}

.hero-card,
.hero-content {
  background: var(--surface);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: calc(12px + clamp(1.2rem, 2.4vw, 1.8rem)) clamp(1.2rem, 2.4vw, 1.8rem) clamp(1.2rem, 2.4vw, 1.8rem);
}

.hero-card {
  margin-top: 0;
  min-height: 100%;
  height: 100%;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.hero-content {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.hero-card h1 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: 0.02em;
}

.hero-profile-frame {
  width: 88px !important;
  height: 88px !important;
  border-radius: 999px !important;
  overflow: hidden !important;
  border: 2px solid #e8deca !important;
  box-shadow: 0 6px 14px rgba(74, 88, 68, 0.16);
  margin: 0.2rem 0 0.8rem;
  display: block;
}

.hero-profile-image {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center 30%;
  border-radius: 0 !important;
  display: block;
  filter: saturate(1.04) contrast(1.02);
}

.subtitle {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  line-height: 1.45;
}

.hero-brand-image {
  width: 92px;
  height: 92px;
  display: block;
  object-fit: contain;
  margin: 0.05rem 0 0.55rem;
}

.socials {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.socials a:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.social-facebook {
  background: #1877f2;
}

.social-instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.social-youtube {
  background: #ff0000;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.38rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.contact-list i {
  width: 18px;
  color: var(--primary);
}

.hero-block {
  margin-top: 0.72rem;
  padding: 0.72rem 0 0;
  border-top: 1px solid rgba(212, 232, 218, 0.2);
  background: transparent;
}

.hero-block h3 {
  font-size: 0.74rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #eef7ef;
  margin-bottom: 0.45rem;
}

.reservation-hero-note {
  margin: 0;
  color: #cde0d1;
  font-size: 0.75rem;
  line-height: 1.45;
}

.maps-link {
  margin-top: 0.55rem;
  display: inline-flex;
  gap: 0.45rem;
  align-items: flex-start;
  color: #cde0d1;
  font-size: 0.73rem;
  line-height: 1.4;
}

.maps-link:hover {
  color: #eef8f0;
}

.qr-wrap {
  margin-top: 1.3rem;
  border-top: 1px solid var(--border);
  padding: 1rem 0 0;
  background: transparent;
}

.qr-title {
  font-size: 0.93rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.qr-image {
  width: 160px;
  max-width: 100%;
  border-radius: 3px;
  border: 1px solid var(--border);
  background: #fff;
  padding: var(--media-pad);
}

.kicker {
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 0.35rem;
}

.hero-content h2 {
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  max-width: none;
  white-space: nowrap;
  margin-bottom: 0;
}

.hero-inline-photo {
  width: 100%;
  max-width: 560px;
  margin: 0.15rem 0 0.25rem;
  padding: var(--media-pad);
  border: 1px solid #e4dccd;
  border-radius: 3px;
  background: #fbf8f1;
  overflow: hidden;
}

.hero-inline-photo__img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

.hero-title-single-line {
  display: inline-block;
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  line-height: 1.2;
  font-size: clamp(0.82rem, 1.08vw, 0.98rem) !important;
  letter-spacing: 0.01em;
}

.hero-title-editorial {
  font-size: clamp(1.35rem, 2.1vw, 1.95rem) !important;
  font-weight: 600;
  color: #223123;
}

.hero-lead {
  font-size: 1rem !important;
  line-height: 1.55;
  color: #324234 !important;
  font-weight: 500;
  max-width: 54ch;
}

.hero-content p {
  color: var(--text-muted);
  max-width: 60ch;
  font-size: 0.84rem;
}

.hero-intro-italic {
  font-size: 0.79rem !important;
  line-height: 1.7;
  font-style: italic;
  color: #5f6c60 !important;
  margin: 0.1rem 0 0.2rem;
  padding: 0.15rem 0 0.15rem 0.8rem;
  border-left: 2px solid #e2dacb;
}

.hero-block-title {
  width: 100%;
  margin: 0 0 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1f2f22;
}

.feature-list {
  display: grid;
  gap: 1rem;
  padding: 1.1rem 0 0.3rem;
  margin-bottom: 0.3rem;
  border-top: 1px solid #eee6d9;
}

.feature-item h3 {
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #243024;
  font-size: 0.83rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.07em;
}

.feature-item h3 i {
  color: var(--accent-yellow);
  font-size: 0.73rem;
}

.feature-item p {
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.68;
  color: #576452;
}

.hero-services {
  margin-top: 0.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 1.05rem 0 0;
  border-top: 1px solid #eee6d9;
}

.btn,
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.62rem 1rem;
  border-radius: 3px;
  border: 1px solid transparent;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-booking,
.chip-booking {
  border-color: #cc9f00;
  background: var(--accent-yellow);
  color: #4a3b00;
  box-shadow: 0 10px 20px rgba(177, 141, 0, 0.24);
}

.btn-service,
.chip-service {
  border-color: #214536;
  background: #17382b;
  color: #edf6ee;
  box-shadow: 0 10px 20px rgba(23, 56, 43, 0.18);
}

.btn-neutral,
.chip-neutral {
  border-color: #d9ccb2;
  background: #f3e7cf;
  color: #4f4532;
  box-shadow: 0 10px 18px rgba(127, 104, 73, 0.08);
}

.btn-on-light,
.chip-on-light {
  border-color: #214536;
  background: #17382b;
  color: #edf6ee;
  box-shadow: 0 10px 20px rgba(23, 56, 43, 0.18);
}

.btn-on-dark,
.chip-on-dark {
  border-color: #d9ccb2;
  background: #f3e7cf;
  color: #4f4532;
  box-shadow: 0 10px 18px rgba(127, 104, 73, 0.08);
}

.btn:hover,
.chip:hover {
  transform: translateY(-2px);
}

.btn-booking:hover,
.chip-booking:hover {
  box-shadow: 0 14px 24px rgba(177, 141, 0, 0.34);
}

.btn-service:hover,
.chip-service:hover {
  box-shadow: 0 14px 24px rgba(23, 56, 43, 0.28);
  background: #1b4232;
}

.btn-neutral:hover,
.chip-neutral:hover {
  box-shadow: 0 14px 22px rgba(127, 104, 73, 0.14);
  background: #f6ead4;
}

.btn-on-light:hover,
.chip-on-light:hover {
  box-shadow: 0 14px 24px rgba(23, 56, 43, 0.28);
  background: #1b4232;
}

.btn-on-dark:hover,
.chip-on-dark:hover {
  box-shadow: 0 14px 22px rgba(127, 104, 73, 0.14);
  background: #f6ead4;
}

.btn-primary {
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.62rem 0.92rem;
  border-radius: 3px;
  border: 1px solid #7f9178;
  background: linear-gradient(120deg, #72896d, #637a5f);
  color: #f8f7f2;
  font-weight: 700;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  box-shadow: 0 10px 20px rgba(88, 109, 84, 0.23);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-card--dark {
  background: linear-gradient(165deg, #17382b, #0f2a1f);
  border-color: #2d4b3f;
}

.hero-home .hero-card--dark {
  align-items: center;
  text-align: center;
}

.hero-home .hero-card--dark .contact-list li,
.hero-home .hero-card--dark .maps-link {
  justify-content: center;
  text-align: center;
}

.hero-home .hero-card--dark .contact-list {
  justify-items: center;
}

.hero-home .hero-card--dark .contact-list i {
  flex: 0 0 18px;
}

.hero-home .hero-card--dark .hero-block {
  width: 100%;
}

.hero-card--dark h1 {
  color: #edf6ee;
}

.hero-card--dark .subtitle,
.hero-card--dark .contact-list li,
.hero-card--dark .contact-list a,
.hero-card--dark .contact-list span,
.hero-card--dark .qr-title {
  color: #c8d8cc;
}

.hero-card--dark .contact-list i {
  color: #9bc9a5;
}

.hero-card--dark .reservation-link {
  color: var(--accent-yellow) !important;
  font-weight: 700;
}

.reservation-link--paused {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-card--dark .qr-wrap {
  border-top-color: rgba(212, 232, 218, 0.24);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 22px rgba(88, 109, 84, 0.3);
}

.btn-booking {
  border: 1px solid #cc9f00;
  background: var(--accent-yellow);
  color: #4a3b00;
  box-shadow: 0 10px 20px rgba(177, 141, 0, 0.3);
  padding: 0.9rem 1.35rem;
  font-size: 0.84rem;
}

.btn-booking:hover {
  box-shadow: 0 14px 24px rgba(177, 141, 0, 0.38);
}

.booking-paused-note {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.88rem 1rem;
  border: 1px solid #e2d4b6;
  border-radius: 3px;
  background: #f7efdc;
  color: #5f5331;
  font-size: 0.8rem;
  line-height: 1.55;
}

.booking-paused-note i,
.booking-paused-note > span:first-child {
  color: #17382b;
  flex: 0 0 auto;
}

.booking-paused-note--hero {
  margin-top: 0.35rem;
}

.booking-paused-note--cta,
.booking-paused-note--page {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(74, 59, 0, 0.24);
  color: #4a3b00;
}

.booking-paused-note--services {
  justify-content: center;
  width: 100%;
  max-width: 560px;
}

.booking-paused-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.booking-paused-note a:hover {
  color: #17382b;
}

.reservation-contact-box {
  margin-top: 1.2rem;
}

.reservation-copy-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.2rem;
}

.contact-copy-list {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.copy-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.7rem 0.85rem;
  align-items: center;
  padding: var(--card-pad);
  border: 1px solid #e4dccd;
  background: #fff;
  border-radius: 3px;
}

.copy-row > div {
  min-width: 0;
}

.copy-row code {
  display: inline-block;
  font-size: 0.94rem;
  background: transparent;
  padding: 0;
  border: 0;
  word-break: break-word;
}

.copy-feedback {
  grid-column: 1 / -1;
  margin-top: -0.05rem;
  font-size: 0.72rem;
  color: #2f5a38;
  min-height: 1em;
}

.booking-paused-panel {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-start;
}

.booking-link-muted {
  color: #f6f0df;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.qr-note {
  font-size: 0.73rem;
  line-height: 1.45;
  color: #c8d8cc;
  margin: 0 0 0.55rem;
}

/* Kdo jsme */
.who-section h2 {
  color: #1f2a21;
  margin-bottom: 0.8rem;
}

.who-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0.85rem;
  align-items: start;
}

.who-text,
.who-video-wrap {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.who-text p {
  font-size: 0.82rem;
  line-height: 1.62;
  margin-bottom: 0.82rem;
  color: #4f5d50;
}

.who-text p:last-of-type {
  margin-bottom: 1rem;
}

.who-text strong {
  color: #253328;
  font-weight: 700;
}

.who-services-link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #4a3b00;
  background: var(--accent-yellow);
  border: 1px solid #cc9f00;
  border-radius: 3px;
  padding: 0.58rem 0.95rem;
  box-shadow: 0 8px 16px rgba(177, 141, 0, 0.24);
}

.who-services-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(177, 141, 0, 0.3);
}

.who-text blockquote {
  margin: 0.2rem 0 0.95rem;
  padding: 0.45rem 0.7rem;
  border-left: 3px solid #cc9f00;
  background: transparent;
  border-radius: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #495648;
  font-style: italic;
}

.who-video-wrap iframe {
  width: 100%;
  min-height: 360px;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.who-video-link {
  display: block;
  color: inherit;
}

.who-video-poster {
  width: 100%;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.who-video-play {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 203, 0, 0.96);
  color: #4a3b00;
  font-size: 1.25rem;
  box-shadow: 0 16px 30px rgba(44, 54, 43, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.who-video-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.62rem 0.85rem;
  background: rgba(17, 42, 31, 0.82);
  color: #edf6ee;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.who-video-link:hover .who-video-play {
  transform: scale(1.06);
  box-shadow: 0 20px 34px rgba(44, 54, 43, 0.28);
}

.who-text-right {
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.who-cta-wrap {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
}


.process-grid,
.audience-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.process-card,
.audience-card,
.team-card {
  background: #fff;
  border: 1px solid #e4dccd;
  border-radius: 3px;
  padding: 0.8rem;
}

.process-step {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--accent-yellow);
  border: 1px solid #cc9f00;
  color: #4a3b00;
  font-weight: 700;
  font-size: 0.78rem;
  margin-bottom: 0.35rem;
}

.process-step i {
  font-size: 0.72rem;
}

.process-card h3,
.audience-card h3,
.team-card h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.process-card p,
.audience-card p,
.team-card p {
  font-size: 0.8rem;
  line-height: 1.45;
  margin: 0;
}

.audience-card i {
  color: var(--accent-yellow);
  margin-bottom: 0.35rem;
}

.team-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.45rem;
}

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

.faq-list {
  display: grid;
  gap: 0.55rem;
}

.faq-list details {
  background: #fff;
  border: 1px solid #e4dccd;
  border-radius: 3px;
  padding: 0.6rem 0.7rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.8rem;
}

.faq-list p {
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  color: #4f5d50;
}

.mini-form {
  display: grid;
  gap: 0.6rem;
}

.mini-form input,
.mini-form textarea {
  width: 100%;
  border: 1px solid #dfd6c4;
  border-radius: 3px;
  padding: 0.6rem 0.7rem;
  font: inherit;
  background: #fff;
}

.mini-form button {
  justify-self: start;
}

.contact-social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.contact-social-grid--lower {
  margin-top: 1.35rem;
}

.contact-intro-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-intro-block .contact-brand-image {
  margin-left: auto;
  margin-right: auto;
}

.contact-intro-block .page-intro {
  margin-left: auto;
  margin-right: auto;
}

.contact-social-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  border: 1px solid #e4dccd;
  border-radius: 3px;
  padding: var(--card-pad-sm);
  min-height: 100%;
}

.contact-social-item--instagram,
.contact-social-item--facebook {
  background: #ffffff;
}

.contact-social-item i {
  font-size: 1rem;
  color: #fff;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 3px;
}

.contact-social-item--instagram i {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.contact-social-item--facebook i {
  background: #1877f2;
}

.contact-social-item strong {
  display: block;
  font-size: 0.82rem;
  color: #223123;
}

.contact-social-item span {
  font-size: 0.78rem;
  color: #5a6659;
}

.contact-email-box {
  background: #fff;
  border: 1px solid #e4dccd;
  border-radius: 3px;
  padding: var(--card-pad);
}

.contact-email-box p {
  margin: 0 0 0.35rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #4f5d50;
}

.contact-email-box code {
  display: inline-block;
  margin-bottom: 0;
  font-size: 1rem;
  color: #1f2a21;
  background: #ffffff;
  padding: 0.55rem 0.75rem;
  border-radius: 3px;
  border: 1px solid #eadfcd;
}

.contact-email-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.copy-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid #214536;
  background: #17382b;
  color: #edf6ee;
  border-radius: 3px;
  padding: 0.78rem 1rem;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  justify-self: end;
  white-space: nowrap;
}

.copy-row-label {
  margin: 0 0 0.2rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #4f5d50;
}

.copy-row-label strong {
  font-weight: 700;
  color: #223123;
}

.contact-email-box small {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.72rem;
  color: #2f5a38;
  min-height: 1em;
}

.contact-brand-image {
  width: 72px;
  height: 72px;
  display: block;
  object-fit: contain;
  margin: 0.1rem 0 0.85rem;
}

.mobile-sticky-cta {
  display: none;
}

/* Recenze */
.testimonials-section h2 {
  color: #1f2a21;
  margin-bottom: 1rem;
}

.testimonials-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.55rem;
}

.testimonials-viewport {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.35s ease;
}

.testimonial-slide {
  min-width: 100%;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 3px;
  border: 1px solid #d7cdb9;
  background: #fffaf0;
  color: #334436;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
}

.carousel-btn:hover {
  background: #f3ebdb;
}

.carousel-dots {
  margin-top: 0.65rem;
  display: flex;
  gap: 0.35rem;
  justify-content: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: #cfbf9c;
  cursor: pointer;
  padding: 0;
}

.carousel-dot.active {
  background: #7b8c73;
}

.testimonial-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: var(--card-pad-lg) var(--card-pad-sm) 0.8rem;
  height: 250px;
  display: flex;
  flex-direction: column;
  box-shadow: none;
}

.testimonial-card p {
  margin: 0 0 0.8rem;
  font-size: 1.22rem;
  line-height: 1.5;
  color: #344235;
  font-weight: 700;
  overflow: auto;
  display: flex;
  align-items: center;
  flex: 1;
}

.booking-giant-btn {
  border-radius: 3px;
}

.testimonial-card h3 {
  margin: auto 0 0;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #233125;
}

/* Naše prostory */
.spaces h2 {
  font-size: 1rem;
  margin-bottom: 1.1rem;
  color: #1f2a21;
}

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.65rem;
}

.spaces-grid--editorial {
  grid-template-columns: 1.35fr 0.85fr 0.85fr;
  grid-template-areas:
    "video tall photo2"
    "video photo3 photo4";
  align-items: stretch;
}

.space-item {
  padding: var(--media-pad);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}

.space-item--video {
  grid-area: video;
  cursor: default;
}

.space-item--tall {
  grid-area: tall;
}

.spaces-grid--editorial a:nth-of-type(2) {
  grid-area: photo2;
}

.spaces-grid--editorial a:nth-of-type(3) {
  grid-area: photo3;
}

.spaces-grid--editorial a:nth-of-type(4) {
  grid-area: photo4;
}

.space-item img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.spaces-grid--editorial .space-item {
  padding: var(--media-pad);
  background: #fff;
}

.spaces-grid--editorial .space-item--video {
  padding: var(--media-pad);
}

.spaces-grid--editorial .space-item img {
  height: 100%;
  min-height: 190px;
}

.space-item--video video {
  width: 100%;
  height: 100%;
  min-height: 388px;
  display: block;
  object-fit: cover;
  background: #0f2a1f;
}

.space-item--tall img {
  min-height: 388px !important;
}

.space-item:hover img {
  transform: scale(1.03);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 14, 10, 0.86);
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1000px, 94vw);
  max-height: 88vh;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
}

/* Bookio widget */
.bookio-section h2 {
  color: #1f2a21;
  margin-bottom: 0.8rem;
}

.booking-section-title {
  margin: 0 0 0.8rem;
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  font-weight: 700;
  color: #1f2a21;
}

.bookio-embed {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  overflow: hidden;
  max-width: 680px;
  margin-inline: auto;
}

.booking-cta-copy {
  color: #d8e6db;
  font-size: 0.96rem;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 1rem;
  text-align: center;
}

.booking-giant-btn {
  min-height: 64px;
  min-width: min(100%, 420px);
  font-size: 0.92rem;
  padding: 1rem 1.4rem;
}

#rezervace-widget.bookio-section {
  background: linear-gradient(180deg, #ffcb00 0%, #f2bf00 100%);
  border-color: #d7a600;
  text-align: center;
}

#rezervace-widget.bookio-section .kicker,
#rezervace-widget.bookio-section h2 {
  color: #3e3100;
}

#rezervace-widget.bookio-section .booking-cta-copy {
  color: #5a4700;
}

#rezervace-widget.bookio-section::before {
  background: rgba(74, 59, 0, 0.14);
}

#rezervace-widget.bookio-section .btn-booking {
  background: #17382b;
  border-color: #17382b;
  color: #edf6ee;
  box-shadow: 0 14px 28px rgba(74, 59, 0, 0.18);
}

#rezervace-widget.bookio-section .btn-booking:hover {
  background: #1b4232;
  border-color: #1b4232;
  box-shadow: 0 18px 32px rgba(74, 59, 0, 0.24);
}

#rezervace-widget.bookio-section .booking-paused-note {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(74, 59, 0, 0.22);
  color: #4a3b00;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(150, 178, 155, 0.32);
  background: #143427;
  color: #dceadf;
  margin-top: 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  padding: 1.5rem 0 1rem;
}

.footer-title {
  margin: 0 0 0.7rem;
  color: #f0f7f2;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-grid a,
.footer-grid span,
.footer-grid p,
.footer-grid li {
  color: #cfe0d2;
  font-size: 0.78rem;
  margin: 0;
}

.footer-grid a:hover {
  color: #ffffff;
}

.footer-menu {
  margin: 0;
  padding: 0 0 0 1.15rem;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.45;
}

.footer-menu li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.45;
}

.footer-contact-list i {
  width: 18px;
  color: #9bc9a5;
  margin-top: 0.08rem;
}

.footer-menu i {
  width: 18px;
  color: #9bc9a5;
  margin-top: 0.08rem;
}

.footer-contact-list a {
  color: #dceadf;
}

.footer-contact-list a.footer-booking-link {
  color: var(--accent-yellow);
  font-weight: 700;
}

.footer-booking-link--paused {
  color: #f1df95 !important;
  font-weight: 600;
}

.footer-maps-link {
  margin-top: 0.7rem;
  display: inline-flex;
  align-items: flex-start;
  gap: 0.45rem;
  color: #cfe0d2;
  line-height: 1.45;
}

.footer-maps-link i {
  color: #9bc9a5;
  margin-top: 0.08rem;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.85rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 3px;
  display: inline-grid;
  place-items: center;
  border: 0;
  color: #ffffff;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.footer-socials a[aria-label="Instagram"] {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.footer-socials a[aria-label="Facebook"] {
  background: #1877f2;
}

.footer-bottom {
  border-top: 1px solid rgba(150, 178, 155, 0.2);
  padding: 0.6rem 0 0.9rem;
}

.footer-bottom p {
  margin: 0;
  color: #cfe0d2;
  font-size: 0.74rem;
}

.footer-mail-link {
  color: #cfe0d2 !important;
  margin-left: 0.35rem;
  display: inline-flex;
  align-items: center;
}

.footer-mail-link:hover {
  color: #ffffff !important;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #214536;
  background: #17382b;
  color: #edf6ee;
  border-radius: 3px;
  box-shadow: 0 12px 22px rgba(23, 56, 43, 0.22);
  z-index: 70;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.back-to-top:hover {
  transform: translateY(-2px);
  background: #1b4232;
  box-shadow: 0 16px 26px rgba(23, 56, 43, 0.28);
}

/* Scroll reveal animace */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.studio-section {
}

.studio-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.studio-image-wrap {
  background: #ffffff;
  border: 1px solid #e4dccd;
  border-radius: 3px;
  overflow: hidden;
  display: block;
  padding: var(--media-pad);
}

.studio-image {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.studio-copy {
  background: #ffffff;
  border: 1px solid #e4dccd;
  border-radius: 3px;
  padding: var(--card-pad);
  margin-bottom: 1rem;
}

.studio-copy p {
  color: #576452;
  font-size: 0.86rem;
  line-height: 1.74;
}

.studio-gallery {
  margin-top: 0.15rem;
}

.about-lightbox-item img,
.studio-image-wrap img {
  transition: transform 0.25s ease;
}

.about-lightbox-item:hover img,
.studio-image-wrap:hover img {
  transform: scale(1.03);
}

/* Sluzby pages */
.page-hero-shell,
.service-page-shell {
}

.page-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 1rem;
  align-items: center;
}

.page-hero-shell h1,
.service-page-shell h1 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin-bottom: 0.55rem;
}

.page-hero-text {
  position: relative;
  z-index: 1;
}

.page-hero-image-wrap {
  overflow: hidden;
  border-radius: 3px;
  min-height: 280px;
  padding: var(--media-pad);
}

.page-hero-image {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.service-video {
  margin: 0.45rem 0 1rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #e6dccb;
  border-radius: 3px;
  overflow: hidden;
  background: #ffffff;
  padding: var(--media-pad);
}

.service-video iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.service-video-caption {
  padding: 0.7rem 0.9rem 0.85rem;
  font-size: 0.76rem;
  color: #697565;
  background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0.72));
}

.contact-location-note {
  max-width: 760px;
  margin: 1.15rem auto 0.7rem;
  padding: var(--card-pad);
  border: 1px solid #e4dccd;
  border-radius: 3px;
  background: #fff;
  color: #223123;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.service-title-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}

.service-avatar-wrap {
  position: relative;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
}

.service-avatar {
  width: 58px;
  height: 58px;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  border: 2px solid #e5dbc8;
  box-shadow: 0 8px 18px rgba(66, 78, 63, 0.12);
}

.service-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #17382b;
  border: 2px solid #fcfaf5;
  color: #edf6ee;
  font-size: 0.78rem;
  position: absolute;
  right: -4px;
  bottom: -4px;
  box-shadow: 0 6px 14px rgba(23, 56, 43, 0.22);
}

.page-intro {
  max-width: 72ch;
  color: #5a6659;
}

.service-lead {
  max-width: 62ch;
  color: #5f6c5b;
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0.2rem 0 1rem;
}

.service-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.service-picker-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.service-picker-btn {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 62px;
  padding: 0.95rem 1rem;
  border: 1px solid #214536;
  background: #17382b;
  color: #edf6ee;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 20px rgba(23, 56, 43, 0.16);
}

.service-picker-btn i {
  font-size: 1rem;
  color: var(--accent-yellow);
  width: 20px;
  text-align: center;
  flex: 0 0 auto;
}

.service-picker-btn span {
  line-height: 1.35;
}

.service-picker-btn:hover {
  transform: translateY(-2px);
  background: #1b4232;
  box-shadow: 0 14px 24px rgba(23, 56, 43, 0.24);
}

.service-picker-cta {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.service-anchor-section {
  scroll-margin-top: 6.8rem;
}

.service-card {
  background: #fff;
  border: 1px solid #e4dccd;
  border-radius: 3px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}

.service-card-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e5dbc8;
  flex: 0 0 auto;
}

.service-card h3 {
  font-size: 0.92rem;
  margin-bottom: 0;
}

.service-card p {
  color: #5a6659;
  font-size: 0.82rem;
  margin-bottom: 0.9rem;
}

.service-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.15rem;
  align-items: start;
}

.service-main-stack {
  display: grid;
  gap: 0.9rem;
}

.service-main-card,
.service-detail-side {
  background: #ffffff;
  border: 1px solid #ebe2d2;
  border-radius: 3px;
  padding: 1rem 1.05rem;
  box-shadow: none;
}

.service-main-card h2 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.7rem;
}

.service-main-card p {
  color: #576452;
  font-size: 0.84rem;
  line-height: 1.78;
}

.service-main-card p + p {
  margin-top: 0.85rem;
}

.service-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.service-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #576452;
  font-size: 0.82rem;
  line-height: 1.6;
}

.service-points i {
  color: #17382b;
  margin-top: 0.18rem;
}

.service-detail-side {
  position: sticky;
  top: 96px;
}

.service-detail-side h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}

.service-detail-side ul {
  margin: 0 0 1rem;
  padding-left: 1rem;
  color: #5a6659;
  line-height: 1.65;
}

.service-meta {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.service-meta-item {
  padding: 0 0 0.7rem;
  border-bottom: 1px solid #eadfcd;
}

.service-meta-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.service-meta-item strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2d3d31;
  margin-bottom: 0.28rem;
}

.service-meta-item span {
  color: #5c6858;
  font-size: 0.8rem;
  line-height: 1.55;
}

.service-detail-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.service-note {
  font-size: 0.76rem;
  color: #6d786b;
  margin-top: 0.7rem;
}

/* Legal page */
.legal-layout {
  display: grid;
  gap: 1rem;
}

.legal-card {
  background: #ffffff;
  border: 1px solid #ebe2d2;
  border-radius: 3px;
  padding: 1rem 1.05rem;
  box-shadow: 0 8px 18px rgba(91, 100, 78, 0.05);
}

.legal-card h2 {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.legal-card h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 1rem 0 0.45rem;
}

.legal-card p,
.legal-card li {
  color: #586454;
  font-size: 0.83rem;
  line-height: 1.74;
}

.legal-card p + p {
  margin-top: 0.7rem;
}

.legal-card ul {
  margin: 0.35rem 0 0.2rem 1.1rem;
  padding: 0;
}

.legal-note {
  display: inline-block;
  margin-top: 0.45rem;
  padding: 0.42rem 0.65rem;
  border-radius: 3px;
  background: #f3e7cf;
  border: 1px solid #e2d0ad;
  color: #4f4532;
  font-size: 0.74rem;
  font-weight: 600;
}

/* O nás - simple layout */
.about-simple {
  max-width: 1140px;
  display: grid;
  gap: 1.1rem;
}

.about-simple > .kicker,
.about-simple > h1 {
  grid-column: 1 / -1;
}

.about-simple > h1 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  margin-bottom: 0.05rem;
}

.about-simple-subheading {
  max-width: 64ch;
  margin: 0 0 0.2rem;
  color: #5f695f;
  font-size: clamp(0.96rem, 1.1vw, 1.02rem);
  line-height: 1.78;
}

.about-simple-feature,
.about-simple-person {
  display: grid;
  grid-template-columns: minmax(230px, 320px) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid #e8ddca;
}

.about-simple-feature {
  grid-template-columns: minmax(330px, 430px) minmax(0, 1fr);
  padding: var(--card-pad);
  margin-top: 0.15rem;
  border: 1px solid #e8ddca;
  border-radius: 3px;
  background: linear-gradient(180deg, #fbf8f1 0%, #ffffff 100%);
  box-shadow: 0 10px 22px rgba(65, 78, 62, 0.05);
}

.about-simple-person {
  border-top: 1px solid #e8ddca;
}

.about-simple-photo {
  display: block;
  width: 100%;
  max-width: 320px;
  padding: var(--media-pad);
  border: 1px solid #e8ddca;
  border-radius: 3px;
  background: #faf6ee;
  overflow: hidden;
}

.about-simple-photo--feature {
  max-width: 430px;
  min-height: 300px;
  padding: var(--media-pad-lg);
  background: #f7f2e8;
}

.about-simple-photo--person {
  max-width: 280px;
}

.about-simple-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

.about-simple-copy {
  max-width: 62ch;
}

.about-simple-copy h2 {
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1rem;
}

.about-simple-copy p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.78;
  margin-bottom: 0.78rem;
}

.about-simple-copy p:last-child {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .about-simple-feature,
  .about-simple-person {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-simple-photo,
  .about-simple-photo--feature,
  .about-simple-photo--person {
    max-width: 100%;
  }

  .about-simple-feature {
    padding: 0.95rem;
  }

  .about-simple-photo--feature {
    min-height: 250px;
  }

  .about-simple-copy {
    max-width: none;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 12px;
  }

  .hero-card,
  .hero-content {
    margin-top: 0;
    min-height: auto;
    height: auto;
  }

    .studio-layout {
    grid-template-columns: 1fr;
  }

  .section-duo {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .spaces-grid--editorial {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "video video"
      "tall photo2"
      "photo3 photo4";
  }

  .space-item--video video,
  .space-item--tall img {
    min-height: 280px !important;
  }

  .who-layout {
    grid-template-columns: 1fr;
  }

  .testimonials-carousel {
    grid-template-columns: 38px 1fr 38px;
  }

  .process-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-hub-grid,
  .service-detail-layout,
  .service-picker-grid,
  .page-hero-shell {
    grid-template-columns: 1fr;
  }

  .page-hero-image,
  .page-hero-image-wrap {
    min-height: 220px;
  }

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

  .who-video-wrap iframe,
  .who-video-poster {
    min-height: 230px;
  }

  .who-text-right {
    min-height: auto;
  }

  .who-cta-wrap {
    justify-content: flex-start;
  }
}

/* Desktop - širší sazba textu v pravém panelu */
@media (min-width: 981px) {
  .hero-content p,
  .feature-item p {
    max-width: none;
  }
}

/* Mobil */
@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 2.75rem));
  }

  main {
    padding-top: 1.45rem;
  }

  .section {
    padding: 4rem 0;
  }

  .page-section {
    margin-top: 0.9rem;
  }

  .panel {
    padding: 30px 24px 22px;
  }

  .panel::before {
    height: 10px;
  }

  :root {
    --card-pad: 1.2rem;
    --card-pad-sm: 1.05rem;
    --card-pad-lg: 1.32rem;
    --media-pad: 0.82rem;
    --media-pad-lg: 0.95rem;
  }

  .contact-list,
  .footer-menu,
  .footer-contact-list,
  .faq-list,
  .process-grid,
  .contact-social-grid,
  .hero-services {
    width: 100%;
    max-width: 100%;
  }

  .contact-email-box code {
    width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-inline-photo,
  .hero-image-shell,
  .page-hero-image-wrap,
  .service-video,
  .studio-image-wrap,
  .about-simple-photo,
  .space-item,
  .contact-social-item,
  .copy-row,
  .faq-list details {
    max-width: 100%;
  }

  .hero-inline-photo,
  .hero-image-shell,
  .page-hero-image-wrap,
  .service-video,
  .studio-image-wrap,
  .about-simple-photo {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-inline-photo__img,
  .hero-image-shell__img,
  .studio-image,
  .about-simple-photo img {
    width: 100%;
    height: auto;
  }

  .space-item img {
    height: auto;
    min-height: 0;
  }

  .spaces-grid--editorial .space-item img,
  .space-item--video video,
  .space-item--tall img {
    min-height: 186px !important;
  }

  .page-hero-image-wrap,
  .page-hero-image {
    min-height: 180px;
  }

  .service-video iframe {
    min-height: 220px;
  }

  .who-video-wrap iframe,
  .who-video-poster {
    min-height: 210px;
  }

  .hero-home .hero-card,
  .hero-home .hero-content {
    padding: 0.95rem 1rem 1rem !important;
  }

  .hero-home .hero-content {
    order: 1;
  }

  .hero-home .hero-card {
    order: 2;
  }

  .testimonial-card {
    min-height: 290px;
  }

  .testimonial-card p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .about-simple-photo--feature,
  .about-simple-photo--person {
    padding: var(--media-pad-lg);
  }

  .about-simple-copy {
    padding: 1rem 0.45rem !important;
  }

  .about-simple-copy p {
    font-size: 0.86rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: 76px;
    left: 4%;
    right: 4%;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 3px;
    border: 1px solid var(--border);
    background: rgba(20, 52, 39, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-menu > li {
    width: 100%;
  }

  .nav-menu > li > a {
    width: 100%;
    justify-content: space-between;
  }

  .nav-home {
    width: 100%;
    height: auto;
    display: inline-flex !important;
    align-items: center;
    justify-content: flex-start !important;
    gap: 0.7rem;
    padding: 0.55rem 0.2rem 0.55rem 0.35rem !important;
    background: transparent;
    border: 0;
  }

  .logo {
    font-size: 0.95rem;
  }

  .logo-image {
    width: 22px;
    height: 22px;
  }

  .nav-home-label {
    display: inline;
  }

  .nav-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
    margin-top: 0.45rem;
    padding: 0.2rem 0 0.1rem 0.85rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    gap: 0.1rem;
  }

  .nav-submenu a {
    color: #dceadf;
    padding: 0.35rem 0;
  }

  .nav-submenu a:hover {
    background: transparent;
    color: #ffffff;
  }

  .nav-active::after,
  .nav-current::after {
    bottom: -0.35rem;
  }

  .hero-content h2 {
    max-width: none;
    white-space: normal;
  }

  .hero-title-single-line {
    white-space: normal !important;
  }

  .hero-lead {
    font-size: 0.92rem !important;
  }

  .qr-image {
    width: 140px;
  }

  .hero-profile-frame {
    width: 80px !important;
    height: 80px !important;
  }

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

  .spaces-grid--editorial {
    grid-template-columns: 1fr;
    grid-template-areas:
      "video"
      "tall"
      "photo2"
      "photo3"
      "photo4";
  }

  .spaces-grid--editorial .space-item img,
  .space-item--video video,
  .space-item--tall img {
    min-height: 220px !important;
  }

  .testimonials-carousel {
    grid-template-columns: 34px 1fr 34px;
  }

  .testimonial-card {
    height: 270px;
  }

  .process-grid,
  .audience-grid,
  .team-grid,
  .service-hub-grid,
  .service-picker-grid {
    grid-template-columns: 1fr;
  }

  .mobile-sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.55rem 0.7rem calc(0.55rem + env(safe-area-inset-bottom));
    background: rgba(252, 248, 240, 0.96);
    border-top: 1px solid #e2d8c3;
    z-index: 80;
  }

  .mobile-sticky-cta a {
    display: block;
    text-align: center;
    background: var(--accent-yellow);
    border: 1px solid #cc9f00;
    border-radius: 3px;
    color: #4a3b00;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.74rem;
    padding: 0.68rem 0.9rem;
  }

  .mobile-sticky-cta--paused {
    text-align: center;
  }

  .mobile-sticky-cta--paused span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 46px;
    background: #17382b;
    border: 1px solid #214536;
    border-radius: 3px;
    color: #edf6ee;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.72rem;
    padding: 0.68rem 0.9rem;
  }

  body {
    padding-bottom: 72px;
  }

  .back-to-top {
    right: 14px;
    bottom: 86px;
    width: 42px;
    height: 42px;
  }

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

/* Home page refresh */
.hero-image-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0.2rem 0 0.85rem;
  padding: var(--media-pad);
  border: 1px solid rgba(232, 222, 202, 0.35);
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(248, 244, 236, 0.08), rgba(248, 244, 236, 0.02));
  overflow: hidden;
}

.hero-image-shell__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
}

.hero-bubble {
  position: absolute;
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #274033;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 12px 18px rgba(18, 34, 24, 0.12);
  border: 1px solid rgba(199, 185, 159, 0.45);
  backdrop-filter: blur(6px);
}

.hero-bubble--title {
  top: 0.85rem;
  left: 0.85rem;
}

.hero-bubble--left {
  left: 0.7rem;
  bottom: 0.95rem;
}

.hero-bubble--right {
  right: 0.7rem;
  bottom: 2.35rem;
}

.hero-bubble--bottom {
  right: 0.95rem;
  top: 0.85rem;
}

.hero-offers {
  margin-top: 0.1rem;
  display: grid;
  gap: 0.8rem;
  padding: 1.05rem 0 0;
  border-top: 1px solid #eee6d9;
}

.hero-block-title--offers {
  margin-bottom: 0.15rem;
}

.hero-offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-offer-card {
  display: grid;
  gap: 0.3rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid #e4dccd;
  border-radius: 3px;
  background: #fff;
  color: #243024;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(71, 87, 67, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-offer-card i {
  color: var(--accent-yellow);
  font-size: 0.9rem;
}

.hero-offer-card span {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-offer-card small {
  font-size: 0.72rem;
  line-height: 1.55;
  color: #627062;
}

.hero-offer-card:hover {
  transform: translateY(-2px);
  border-color: #cfb98d;
  box-shadow: 0 14px 26px rgba(71, 87, 67, 0.12);
}

.hero-offer-card:nth-child(5) {
  grid-column: 1 / -1;
}

.who-video-badge {
  display: none;
}

@media (max-width: 980px) {
  .hero-offer-grid {
    grid-template-columns: 1fr;
  }

  .hero-offer-card:nth-child(5) {
    grid-column: auto;
  }

  .hero-image-shell {
    aspect-ratio: 16 / 10;
  }

  .hero-inline-photo {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .hero-bubble {
    font-size: 0.62rem;
    padding: 0.35rem 0.6rem;
  }
}

/* Navbar logo hard override */
.header .navbar {
  min-height: 58px !important;
}

.header .logo {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  font-size: 0.9rem !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  max-width: 100% !important;
  flex: 0 1 auto !important;
}

.header .logo-image {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  display: block !important;
  object-fit: contain !important;
  flex: 0 0 18px !important;
}

@media (max-width: 980px) {
  .header .navbar {
    min-height: 54px !important;
  }

  .header .logo {
    font-size: 0.82rem !important;
    gap: 0.32rem !important;
  }

  .header .logo-image {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    flex-basis: 16px !important;
  }

  .nav-menu {
    max-height: calc(100vh - 78px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Home layout cleanup */
.hero-home {
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr) !important;
  gap: 0 !important;
  align-items: stretch !important;
}

.hero-home .hero-card,
.hero-home .hero-content {
  margin-top: 0 !important;
  min-height: 100% !important;
  height: 100% !important;
  padding-top: calc(12px + 1.2rem) !important;
}

.hero-home .hero-card {
  align-self: stretch !important;
  display: flex !important;
  flex-direction: column !important;
}

.hero-home .hero-content p,
.hero-home .feature-item p {
  max-width: none !important;
}

.who-shell {
  position: relative !important;
  overflow: hidden !important;
  border: 2px solid #e3dac8 !important;
  border-radius: 3px !important;
  background: #ffffff !important;
  box-shadow: 0 6px 16px rgba(65, 78, 62, 0.06) !important;
}

.who-shell::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 12px !important;
  background: linear-gradient(165deg, #17382b, #0f2a1f) !important;
}

.who-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px !important;
  align-items: start !important;
}

.who-copy {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0.15rem 0.25rem 0.05rem 0.15rem !important;
  box-shadow: none !important;
  display: flex !important;
  flex-direction: column !important;
  min-height: auto !important;
}

.who-actions {
  margin-top: auto !important;
  display: flex !important;
  justify-content: flex-end !important;
}

@media (max-width: 980px) {
  .hero-home {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .hero-home .hero-card,
  .hero-home .hero-content {
    height: auto !important;
  }

  .who-actions {
    justify-content: flex-start !important;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 2.75rem));
  }

  .section {
    padding: 4rem 0;
  }

  .navbar {
    gap: 0.65rem;
  }

  .header .logo {
    font-size: 0.76rem !important;
    gap: 0.28rem !important;
    max-width: calc(100% - 58px) !important;
  }

  .nav-menu {
    top: 68px;
    left: 0.6rem;
    right: 0.6rem;
    padding: 0.85rem;
  }

  .nav-menu > li > a {
    padding: 0.42rem 0;
  }

  .nav-menu .nav-cta {
    display: inline-flex;
    justify-content: center !important;
    align-items: center;
    width: 100%;
    padding: 0.72rem 1rem !important;
    text-align: center;
  }

  .nav-home {
    gap: 0.5rem;
    padding-left: 0.15rem !important;
  }

  .contact-location-note {
    margin-top: 0.95rem;
    padding: 0.75rem 0.95rem;
  }

  .panel :is(h1, h2, h3, p, .kicker, .page-intro, .booking-section-title, .contact-location-note, .about-simple-subheading, .hero-block-title, .faq-list summary, .hero-lead, .hero-intro-italic, .copy-row-label, .contact-email-box p, .contact-social-item strong, .service-main-card h2) {
    display: block;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Mobile simplification: flatten nested boxes and keep one clear frame per section */
  .hero-inline-photo,
  .hero-image-shell,
  .page-hero-image-wrap,
  .service-video,
  .studio-image-wrap,
  .about-simple-photo,
  .space-item {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-offer-card,
  .process-card,
  .audience-card,
  .team-card,
  .testimonial-card,
  .service-main-card,
  .service-detail-side,
  .faq-list details,
  .legal-card,
  .studio-copy,
  .about-simple-feature,
  .about-simple-person,
  .about-simple-copy {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }

  .hero-offer-card,
  .process-card,
  .audience-card,
  .team-card,
  .testimonial-card,
  .service-main-card,
  .service-detail-side,
  .legal-card,
  .studio-copy,
  .faq-list details,
  .about-simple-feature,
  .about-simple-person,
  .about-simple-copy {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-offer-card,
  .process-card,
  .audience-card,
  .team-card,
  .testimonial-card,
  .service-main-card,
  .service-detail-side,
  .legal-card,
  .studio-copy,
  .faq-list details {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
  }

  .copy-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    align-items: flex-start;
  }

  .contact-email-row {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }

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

  .about-simple-feature,
  .about-simple-person {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding-top: 0.6rem;
    border-top-color: #e8ddca;
  }

  .about-simple > .kicker,
  .about-simple > h1,
  .about-simple-subheading {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .about-simple-photo--feature,
  .about-simple-photo--person {
    min-height: 0;
  }

  .about-simple-copy h2 {
    margin-bottom: 0.35rem;
  }

  .about-simple-copy p {
    margin-bottom: 0.55rem;
  }

  .contact-social-item {
    align-items: flex-start;
  }

  .testimonial-card {
    min-height: 240px;
    height: auto;
  }

  .hero-offer-card {
    gap: 0.22rem;
  }

  .hero-offer-card small {
    display: block;
  }

  .space-item img,
  .spaces-grid--editorial .space-item img,
  .space-item--video video,
  .space-item--tall img {
    min-height: 180px !important;
  }

  .hero-card h1,
  .hero-content h2,
  .about-simple-copy h2,
  .process-card h3,
  .faq-list summary,
  .contact-location-note {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .about-simple-copy {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Final mobile layout pass: one clear frame, one text rhythm. */
@media (max-width: 760px) {
  main {
    padding-top: 0.75rem;
  }

  .container {
    width: calc(100% - 0.9rem) !important;
    max-width: none;
  }

  .section {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .page-section {
    margin-top: 0.9rem !important;
  }

  .panel {
    padding: 1rem !important;
  }

  .panel::before {
    height: 8px;
  }

  .panel > :first-child {
    margin-top: 0.25rem;
  }

  .panel :is(h1, h2, h3, p, .kicker, .page-intro, .about-simple-subheading, .booking-section-title, .hero-block-title, summary) {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .hero-home {
    width: calc(100% - 0.9rem) !important;
    padding: 0 !important;
    gap: 0 !important;
  }

  .hero-home::before {
    height: 8px;
  }

  .hero-home .hero-content {
    order: 1;
    padding: 1rem !important;
  }

  .hero-home .hero-card {
    order: 2;
    padding: 1rem !important;
  }

  .hero-home .hero-content > :first-child,
  .hero-home .hero-card > :first-child {
    margin-top: 0.2rem !important;
  }

  .hero-home :is(h1, h2, h3, p, .subtitle, .hero-lead, .hero-intro-italic, .hero-block-title) {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .hero-content {
    gap: 0.75rem;
  }

  .hero-title-editorial {
    margin-top: 0 !important;
  }

  .hero-inline-photo,
  .hero-image-shell,
  .page-hero-image-wrap,
  .service-video,
  .studio-image-wrap,
  .about-simple-photo,
  .space-item {
    padding: 0 !important;
  }

  .hero-offer-card,
  .process-card,
  .testimonial-card,
  .service-main-card,
  .service-detail-side,
  .faq-list details,
  .legal-card,
  .studio-copy,
  .booking-paused-note,
  .contact-social-item,
  .contact-email-box,
  .copy-row,
  .about-simple-feature,
  .about-simple-person,
  .about-simple-copy {
    padding: 0.85rem !important;
  }

  .about-simple {
    gap: 0.9rem;
  }

  .about-simple-feature,
  .about-simple-person {
    grid-template-columns: 1fr;
  }

  .copy-row {
    grid-template-columns: 1fr;
  }

  .nav-menu .nav-cta {
    display: inline-flex;
    justify-content: center !important;
    align-items: center;
    width: 100%;
    padding: 0.72rem 1rem !important;
    text-align: center;
  }

  .footer {
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    justify-items: center;
    gap: 1.2rem;
    padding-top: 1.35rem;
  }

  .footer-grid > div {
    width: 100%;
  }

  .footer-title {
    text-align: center;
  }

  .footer-menu,
  .footer-contact-list {
    padding-left: 0 !important;
    justify-items: center;
  }

  .footer-menu li,
  .footer-contact-list li,
  .footer-maps-link {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .footer-menu i,
  .footer-contact-list i,
  .footer-maps-link i {
    margin-top: 0;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
  }

  .back-to-top {
    z-index: 120;
  }
}
