:root {
  --bg: #efefed;
  --bg-soft: #f3f2ef;
  --bg-plain: #ecebe7;
  --surface: #f8f7f4;
  --text: #2f2b28;
  --muted: #625c57;
  --border: #5e5751;
  --border-soft: rgba(94, 87, 81, 0.42);
  --accent: #c97b49;
  --accent-hover: #b96d3c;
  --white: #ffffff;
  --shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.06);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --container: 1280px;
  --container-narrow: 1360px;
  --header-height: 84px;
  --transition: 0.28s ease;
}

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

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.container {
  width: min(100% - 56px, var(--container));
  margin: 0 auto;
}

.container-narrow {
  width: min(100% - 112px, var(--container-narrow));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section + .section {
  padding-top: 48px;
}

.section-hero {
  background: var(--bg);
}

.section-soft {
  background: var(--bg-soft);
}

.section-plain {
  background: var(--bg-plain);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2vw, 2.35rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.section-heading-center {
  text-align: center;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(239, 239, 237, 0.9);
  border-bottom: 1px solid rgba(94, 87, 81, 0.14);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  min-height: var(--header-height);
}

.site-brand {
  display: inline-block;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.site-brand:hover,
.site-brand:focus-visible {
  border-color: rgba(201, 123, 73, 0.55);
  background: rgba(201, 123, 73, 0.08);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 34px);
}

.main-nav a {
  position: relative;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 2px solid var(--border-soft);
  border-radius: 16px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition: var(--transition);
}

/* Hero */

.hero {
  padding-top: 72px;
}

.hero-grid {
  display: flex;
  justify-content: center;
}

.hero-content,
.hero-media {
  min-width: 0;
}

.hero-content {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-mobile-profile {
  display: none;
}

.hero-content h1 {
  margin: 0;
  max-width: 680px;
  font-size: 2.45rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.028em;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.hero-content h1 span {
  display: block;
}

.hero-content h1 .hero-line-1,
.hero-content h1 .hero-line-2 {
  white-space: nowrap;
}

.hero-cta-group {
  margin-top: 36px;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
}

.hero-note {
  margin: 12px 0 0;
  font-size: 0.95rem;
  color: var(--muted);
  text-align: center;
}

.hero-secondary-cta {
  margin-top: 22px;
  width: 100%;
  max-width: 420px;
  display: flex;
  justify-content: center;
  align-self: center;
}

.image-frame {
  overflow: hidden;
  border-radius: 12px;
  background: #ddd;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1.1;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 14px 28px;
  border: 2px solid rgba(94, 87, 81, 0.52);
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  box-shadow: 0 5px 0 rgba(47, 43, 40, 0.08);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

.btn-primary {
  color: var(--white);
  background: var(--accent);
  border-color: rgba(94, 87, 81, 0.42);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-hover);
}

.btn-outline {
  color: var(--text);
  background: transparent;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(255, 255, 255, 0.46);
}

.btn-lg {
  min-height: 88px;
  min-width: 420px;
  padding: 22px 38px;
  font-size: 1.2rem;
}

.btn-secondary-hero {
  min-height: 64px;
  min-width: 320px;
  padding: 16px 24px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.btn-service {
  min-height: 72px;
  min-width: 360px;
  padding: 20px 34px;
  font-size: 1.05rem;
}

.btn-service-equal {
  display: inline-flex;
}

.btn-small {
  min-height: 54px;
  padding: 14px 28px;
  font-size: 0.88rem;
}

.btn-bio {
  min-width: 260px;
}

/* Cards */

.card {
  background: rgba(255, 255, 255, 0.18);
  border: 2px solid var(--border-soft);
  border-radius: var(--radius-xl);
}

/* Services */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  align-items: stretch;
}

.service-card {
  min-height: 220px;
  padding: 32px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card h3,
.online-program-card h3,
.pricing-card h3,
.contact-info-card h3 {
  margin: 0 0 16px;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
}

.service-card p,
.online-program-card p,
.pricing-card p,
.about-card p,
.contact-intro p,
.contact-info-card p {
  margin: 0;
}

.service-card p + p,
.online-program-card p + p,
.pricing-card p + p,
.about-card p + p {
  margin-top: 16px;
}

.services-actions,
.pricing-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.online-program-card {
  margin-top: 26px;
  padding: 32px 36px;
  text-align: center;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: minmax(340px, 520px) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 100px);
  align-items: center;
}

.about-media {
  justify-self: center;
  width: 100%;
  max-width: 380px;
}

.about-content {
  max-width: 760px;
}

.about-card {
  padding: 38px 42px;
  max-width: 760px;
}

.about-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.about-media {
  justify-self: center;
  width: 100%;
  max-width: 380px;
}

.about-media .image-frame {
  background: transparent;
}

.about-media .image-frame img.about-photo {
  width: 100%;
  height: auto;
  object-fit: contain !important;
  object-position: center center !important;
  aspect-ratio: auto !important;
}

/* Reviews */

.google-badge {
  margin-top: 22px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  padding: 12px 18px;
  border: 2px solid var(--border-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.google-badge:hover,
.google-badge:focus-visible {
  background: rgba(201, 123, 73, 0.08);
  border-color: rgba(201, 123, 73, 0.45);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.google-badge__label {
  font-weight: 800;
  letter-spacing: 0.02em;
}

.google-badge__stars,
.stars {
  color: var(--accent);
  letter-spacing: 0.08em;
  font-weight: 800;
}

.google-badge__score,
.google-badge__count {
  color: var(--muted);
  font-weight: 600;
}

.reviews-slider {
  position: relative;
  margin-top: 34px;
}

.reviews-viewport {
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 24px) / 2);
  padding: 26px 26px 24px;
  border: 2px solid var(--border-soft);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.2);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.review-card .stars {
  margin-bottom: 14px;
  font-size: 0.98rem;
}

.review-card p {
  margin: 0;
  text-align: left;
}

.review-card p:first-of-type {
  margin-bottom: 14px;
  font-weight: 800;
  font-size: 0.98rem;
}

.review-card p:last-of-type {
  color: var(--text);
  line-height: 1.72;
}

.review-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 2px solid rgba(94, 87, 81, 0.3);
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    color var(--transition);
  z-index: 3;
  overflow: hidden;
}

.review-btn:hover,
.review-btn:focus-visible {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 12px 24px rgba(201, 123, 73, 0.35);
  transform: translateY(-50%) scale(1.08);
}

.review-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.review-btn-prev {
  left: -18px;
}

.review-btn-next {
  right: -18px;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(94, 87, 81, 0.25);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}

.reviews-dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

.reviews {
  padding-bottom: 56px;
}

/* Pricing */

.pricing {
  padding-top: 40px;
}

.pricing-container {
  max-width: 860px;
}

.pricing-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 36px 34px 32px;
  text-align: center;
}

.price {
  margin: 20px 0 22px;
  font-size: clamp(2rem, 3vw, 2.55rem);
  font-weight: 800;
  line-height: 1;
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  border: 2px solid var(--border-soft);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 24px;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
}

.faq-icon {
  flex-shrink: 0;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  transition: transform 0.45s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.55s ease;
}

.faq-answer-inner {
  padding: 0 24px 24px;
  color: #4a4642;
}

.faq-answer-inner p {
  margin: 0;
}

.faq-answer-inner p + p {
  margin-top: 16px;
}

/* Contact */

.contact-intro {
  max-width: 1100px;
  margin: 0 auto 34px;
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 30px;
  align-items: stretch;
}

.contact-form-block h3,
.contact-map-block h3 {
  margin: 0 0 14px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.contact-info-card {
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  min-height: 100%;
}

.contact-address {
  margin: 0;
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.85;
}

.contact-address strong {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--text);
}

.contact-links {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.contact-links a {
  font-size: 1.2rem;
  font-weight: 700;
  transition: color var(--transition);
}

.contact-links a:hover,
.contact-links a:focus-visible {
  color: var(--accent);
}

.contact-meta {
  display: grid;
  gap: 12px;
  color: #4a4642;
}

.contact-meta p {
  margin: 0;
}

.contact-map-block {
  margin-top: 34px;
}

/* Embeds */

.embed-shell {
  border: none;
  background: transparent;
  padding: 0;
  overflow: hidden;
}

.embed-shell iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 24px;
}

.embed-shell-form {
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: 0;
}

.embed-shell-form .reservanto-iframe {
  width: 100%;
  max-width: 100% !important;
  height: 500px !important;
}

.embed-shell-map {
  border-radius: 18px;
  overflow: hidden;
}

.embed-shell-map iframe {
  width: 100%;
  height: 440px;
  min-height: 440px;
  pointer-events: none;
}

.embed-shell-map:hover iframe {
  pointer-events: auto;
}

/* Scroll top */

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border: 2px solid rgba(94, 87, 81, 0.45);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    opacity var(--transition),
    visibility var(--transition);
  z-index: 999;
  cursor: pointer;
}

.scroll-top:hover,
.scroll-top:focus-visible {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 12px 24px rgba(201, 123, 73, 0.35);
  transform: translateY(0) scale(1.08);
}

.scroll-top:active {
  transform: translateY(0) scale(0.95);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Reveal */

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

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

/* Responsive */

@media (max-width: 1480px) {
  .container-narrow {
    width: min(100% - 96px, var(--container-narrow));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 620px) minmax(0, 420px);
    gap: 40px;
  }

  .hero-content {
    max-width: 620px;
  }

  .hero-content h1 {
    max-width: 620px;
    font-size: 2.28rem;
  }

  .btn-lg {
    min-width: 400px;
  }

  .btn-secondary-hero {
    min-width: 300px;
  }
}

@media (max-width: 1100px) {
  :root {
    --header-height: 88px;
  }

  .container,
  .container-narrow {
    width: min(100% - 32px, var(--container));
  }

  .header-inner {
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    position: relative;
  }

  .site-brand {
    display: inline-flex;
    align-items: center;
    width: auto;
    max-width: max-content;
    font-size: 0.86rem;
    line-height: 1.2;
    padding: 8px 10px;
    justify-self: start;
  }

  .nav-toggle {
    display: inline-block;
    z-index: 1002;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px;
    border: 2px solid rgba(94, 87, 81, 0.28);
    border-radius: 20px;
    background: rgba(248, 247, 244, 0.98);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.25s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.03);
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
  }

  .hero-content,
  .about-content {
    order: 1;
    text-align: center;
    max-width: 100%;
    align-items: center;
  }

  .about-media {
    order: 2;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-content h1 {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    font-size: 2.2rem;
    line-height: 1.1;
  }

  .hero-content h1 span {
    display: inline;
  }

  .hero-content h1 .hero-line-1,
  .hero-content h1 .hero-line-2 {
    white-space: normal;
  }

  .hero-cta-group {
    order: 2;
  }

  .hero-secondary-cta {
    order: 3;
    max-width: 100%;
    align-items: center;
  }

  .hero-media {
    display: none;
  }

  .hero-mobile-profile {
    display: block;
    order: 4;
    width: 100%;
    max-width: 220px;
    margin: 24px auto 0;
  }

  .hero-mobile-photo {
    width: 220px;
    height: 220px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 18px;
    background: #ddd;
  }

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

  .btn-lg {
    width: min(100%, 380px);
    min-width: 0;
  }

  .btn-secondary-hero {
    width: min(100%, 300px);
    min-width: 0;
  }

  .btn-service,
  .btn-bio {
    width: min(100%, 360px);
    min-width: 0;
  }

  .about-card {
    margin: 0 auto;
  }

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

  .review-track {
    gap: 0;
  }

  .review-card {
    flex: 0 0 100%;
    min-height: auto;
  }

  .review-btn-prev {
    left: -8px;
  }

  .review-btn-next {
    right: -8px;
  }
  .contact-grid {
  grid-template-columns: 1fr;
}

.contact-info-card {
  max-width: 680px;
  margin: 0 auto;
}
}

@media (max-width: 820px) {
  .section {
    padding: 58px 0;
  }

  .google-badge {
    border-radius: 22px;
    padding: 12px 14px;
  }

  .reviews-slider {
    margin-top: 28px;
  }

  .review-card {
    padding: 22px 20px;
  }

  .review-card p:last-of-type {
    line-height: 1.68;
  }

  .review-btn {
    width: 42px;
    height: 42px;
  }

  .service-card,
  .online-program-card,
  .about-card,
  .pricing-card,
  .contact-info-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-form-block h3,
  .contact-map-block h3 {
    font-size: clamp(1.7rem, 6vw, 2.15rem);
  }

  .embed-shell {
    min-height: 280px;
  }
  .embed-shell-form {
  min-height: 520px;
  padding: 12px;
}

.embed-shell-form .reservanto-iframe {
  height: 520px !important;
}

.embed-shell-map {
  min-height: 320px;
}

.embed-shell-map iframe {
  height: 320px;
  min-height: 320px;
}

.contact-address {
  font-size: 1rem;
}

.contact-links a {
  font-size: 1.08rem;
}
}

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

  .service-card {
    min-height: 180px;
  }

  .services-actions {
    margin-top: 22px;
  }

  .btn-service-equal {
    width: min(100%, 320px);
    min-height: 64px;
  }

  .online-program-card {
    padding: 26px 22px;
  }
}

@media (max-width: 560px) {
  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2 {
    font-size: 1.32rem;
    letter-spacing: 0.1em;
  }

  .hero-content h1 {
    font-size: 1.95rem;
  }

  .hero-cta-group,
  .hero-secondary-cta {
    width: 100%;
  }

  .hero-note {
    font-size: 0.95rem;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 20px 18px;
  }

  .faq-answer-inner {
    padding: 0 18px 18px;
    font-size: 0.94rem;
  }

  .contact-intro {
    margin-bottom: 26px;
    font-size: 0.98rem;
  }

  .contact-links a {
    font-size: 1.03rem;
  }

  .scroll-top {
    width: 48px;
    height: 48px;
    right: 14px;
    bottom: 14px;
  }
}

.review-btn,
.reviews-dot {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}

.hero-socials {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-socials-text {
  margin: 0;
  font-size: 0.98rem;
  color: var(--muted);
}

.hero-social-links {
  display: flex;
  gap: 16px;
}

.hero-social-link {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(94, 87, 81, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  font-size: 1.2rem;
  color: var(--text);
  transition: all 0.25s ease;
}

.hero-social-link:hover {
  transform: translateY(-2px);
  background: rgba(201, 123, 73, 0.08);
  border-color: rgba(201, 123, 73, 0.45);
  color: var(--accent);
}

@media (max-width: 820px) {

  .hero-content {
    display: flex;
    flex-direction: column;
  }

  .hero-cta-group {
    order: 1;
  }

  .hero-secondary-cta {
    order: 2;
  }

  .hero-socials {
    order: 3;
  }

}

@media (max-width: 1100px) {

  .hero-content {
    display: flex;
    flex-direction: column;
  }

  .hero-cta-group {
    order: 1;
  }

  .hero-secondary-cta {
    order: 2;
  }

  .hero-socials {
    order: 3;
  }

}

/* Cookies */

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3000;
}

.cookie-banner-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: rgba(248, 247, 244, 0.96);
  border: 2px solid var(--border-soft);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
}

.cookie-text h2 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.2;
  font-weight: 800;
}

.cookie-text p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn {
  min-height: 50px;
  padding: 12px 22px;
  font-size: 0.78rem;
  cursor: pointer;
}

.cookie-settings-btn {
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  padding: 12px 8px;
}

.cookie-settings-btn:hover,
.cookie-settings-btn:focus-visible {
  color: var(--accent);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 3100;
  display: none; /* KLÍČOVÉ */
  place-items: center;
  padding: 24px;
  background: rgba(47, 43, 40, 0.42);
}

.cookie-modal:not([hidden]) {
  display: grid;
}

.cookie-modal-card {
  width: min(100%, 560px);
  padding: 32px;
  background: var(--surface);
  border: 2px solid var(--border-soft);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.cookie-modal-card h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 800;
}

.cookie-modal-card p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.65;
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(94, 87, 81, 0.16);
  font-weight: 700;
}

.cookie-option input {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
}

.cookie-modal-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 820px) {
  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .cookie-banner-inner {
    grid-template-columns: 1fr;
    padding: 22px 18px;
    gap: 18px;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .btn,
  .cookie-actions .cookie-settings-btn {
    width: 100%;
  }

  .cookie-modal-card {
    padding: 24px 18px;
  }

  .cookie-modal-actions .btn {
    width: 100%;
  }
}

.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 40px;
}

.footer-copy a {
  text-decoration: underline;
  cursor: pointer;
}

.footer-copy a:hover {
  color: var(--accent);
}

.accent-text {
  color: var(--accent);
}