:root {
  --bg: #0b1220;
  --bg-card: #111b2e;
  --bg-elevated: #162238;
  --text: #e8edf5;
  --text-muted: #94a3b8;
  --accent: #2dd4bf;
  --accent-gold: #c9a227;
  --border: rgba(148, 163, 184, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --container: 1200px;
  --header-h: 72px;
  --trip-green: #00aa6c;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.site-main {
  flex: 1;
}

/* Основной текст — один цвет на всём сайте */
.hero-lead,
.page-header p,
.section p,
.section-lead,
.card p,
.review-body p,
.footer-about,
.footer-legal-notice,
.footer-bottom p,
.contact-form-lead,
.contact-form-notice,
.contact-form-success p,
.contact-form-consent,
.review-form-lead,
.text-sidebar__list li,
.toast-body p,
.error-page-text,
.error-page-subtitle,
.field-hint {
  color: var(--text);
}

body.menu-open {
  overflow-y: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent-gold);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img,
.logo-link svg {
  height: 36px;
  width: auto;
}

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

.main-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--accent);
}

.mobile-toggle,
.mobile-menu-close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(45, 212, 191, 0.35);
  border-radius: 12px;
  background: linear-gradient(145deg, var(--bg-elevated), var(--bg-card));
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.mobile-toggle:hover,
.mobile-menu-close:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.12);
}

.mobile-toggle:focus-visible,
.mobile-menu-close:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.25);
}

.mobile-toggle-icon {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
}

.mobile-toggle-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2.5px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--text), var(--accent));
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    top 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    bottom 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.2s ease,
    background 0.25s;
}

.mobile-toggle-line:nth-child(1) {
  top: 0;
}

.mobile-toggle-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.mobile-toggle-line:nth-child(3) {
  bottom: 0;
}

body.menu-open .mobile-toggle {
  border-color: rgba(201, 162, 39, 0.5);
  background: linear-gradient(145deg, rgba(45, 212, 191, 0.12), var(--bg-card));
}

body.menu-open .mobile-toggle .mobile-toggle-line {
  background: linear-gradient(90deg, var(--accent), var(--accent-gold));
}

body.menu-open .mobile-toggle .mobile-toggle-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

body.menu-open .mobile-toggle .mobile-toggle-line:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
}

body.menu-open .mobile-toggle .mobile-toggle-line:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.mobile-toggle-icon--close .mobile-toggle-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.mobile-toggle-icon--close .mobile-toggle-line:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
}

.mobile-toggle-icon--close .mobile-toggle-line:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100vh;
  height: 100dvh;
  background: var(--bg-card);
  z-index: 160;
  padding: 0 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--border);
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.4);
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 1.25rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg-card);
  z-index: 1;
}

.mobile-menu-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.mobile-menu-close {
  border-color: rgba(201, 162, 39, 0.4);
}

.mobile-menu-close .mobile-toggle-line {
  background: linear-gradient(90deg, var(--accent), var(--accent-gold));
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu li {
  border-bottom: 1px solid var(--border);
}

.mobile-menu a {
  display: block;
  padding: 1rem 0;
  color: var(--text);
  font-weight: 600;
  font-size: 1.05rem;
}

body.menu-open .mobile-menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .mobile-menu {
  transform: translateX(0);
}

/* Hero */
.hero {
  padding: 3rem 0 2.25rem;
  background: linear-gradient(160deg, var(--bg-elevated) 0%, var(--bg) 55%);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  font-weight: 800;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--accent), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.125rem;
  margin: 0 0 1.75rem;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.hero-stat {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.hero-stat:last-child {
  border-bottom: none;
}

.hero-stat strong {
  color: var(--accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #1fa896);
  color: var(--bg);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(45, 212, 191, 0.25);
}

/* Sections */
.section {
  padding: 2rem 0;
}

.section + .section {
  padding-top: 0.75rem;
}

.page-header + .section {
  padding-top: 1.25rem;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.65rem;
  font-weight: 800;
}

.section-lead {
  margin: 0 0 1.15rem;
  max-width: 42rem;
}

.section .container > p {
  margin: 0 0 0.85rem;
  max-width: 42rem;
}

.section--wide .section-lead,
.section--wide .container > p {
  max-width: none;
}

.section .container > p:last-child {
  margin-bottom: 0;
}

.section .container > .grid-2,
.section .container > .grid-3 {
  margin-top: 0.25rem;
}

.section .container > p + .grid-2,
.section .container > p + .grid-3,
.section .container > .section-lead + .grid-2,
.section .container > .section-lead + .grid-3 {
  margin-top: 1rem;
}

.section .container > .grid-2 + p,
.section .container > .grid-3 + p {
  margin-top: 1rem;
}

/* Две колонки: текст + боковая панель */
.section-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 21rem);
  gap: 2rem 2.5rem;
  align-items: start;
}

.section-layout--in-section {
  margin-top: 1.75rem;
}

.reviews-summary + .section-layout--in-section {
  margin-top: 2rem;
}

.section-layout__main > .section-lead,
.section-layout__main > p {
  max-width: none;
  overflow-wrap: anywhere;
}

.section-layout__main {
  min-width: 0;
}

.section-layout__aside {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.section-layout__aside > * {
  max-width: 100%;
}

@media (min-width: 993px) {
  .section-layout__aside {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
  }
}

.review-quote-embed {
  width: 100%;
  max-width: 22rem;
  margin: 0;
}

.review-quote-embed--center {
  margin-left: auto;
  margin-right: auto;
}

.section .container > p + .review-quote-embed--center,
.section .container > .review-quote-embed--center {
  margin-top: 1.15rem;
}

.review-quote-embed .review-card {
  margin: 0;
}

.text-sidebar {
  width: 100%;
  padding: 1.25rem 1.35rem;
}

.text-sidebar:hover {
  transform: none;
}

.text-sidebar__title {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 800;
}

.text-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.text-sidebar__list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  line-height: 1.45;
}

.text-sidebar__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.text-sidebar__list strong {
  display: block;
  color: var(--text);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}

.text-sidebar__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.text-sidebar__links a {
  font-size: 0.9rem;
  font-weight: 600;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.review-quotes-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 1.15rem 0 0;
}

.review-quotes-row .review-quote-embed {
  max-width: none;
  margin: 0 auto;
}

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: rgba(45, 212, 191, 0.4);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.2), rgba(201, 162, 39, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
}

/* Page header */
.page-header {
  padding: 2rem 0 1.15rem;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.page-header p {
  margin: 0;
  max-width: 48rem;
}

/* Reviews TripAdvisor style */
.reviews-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.reviews-score-block {
  text-align: center;
  min-width: 0;
  width: 120px;
}

.reviews-score-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--trip-green);
  color: #fff;
  font-size: 1.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
}

.reviews-score-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.reviews-bars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.reviews-bar-row {
  display: grid;
  grid-template-columns: minmax(0, 60px) 1fr minmax(0, 40px);
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.reviews-bar-track {
  height: 8px;
  background: var(--bg-elevated);
  border-radius: 4px;
  overflow: hidden;
}

.reviews-bar-fill {
  height: 100%;
  background: var(--trip-green);
  border-radius: 4px;
}

.reviews-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

#reviews-pending-slot {
  display: contents;
}

.review-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.review-card:hover {
  border-color: rgba(45, 212, 191, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.review-card-head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-gold));
  color: var(--bg);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-meta {
  flex: 1;
  min-width: 0;
}

.review-meta h3 {
  margin: 0 0 0.15rem;
  font-size: 0.95rem;
  line-height: 1.3;
}

.review-meta .review-date {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.review-rating-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--trip-green);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: auto;
}

.review-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

.review-body h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  line-height: 1.35;
}

.review-body p {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  line-height: 1.55;
  flex: 1;
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.review-tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--bg-elevated);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* Contact page */
.page-header--contact {
  padding-top: 2rem;
  padding-bottom: 1.15rem;
  margin-top: 0;
}

.section-contact {
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

a.contact-card:hover {
  color: inherit;
  border-color: rgba(45, 212, 191, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.contact-card--static {
  cursor: default;
}

.contact-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.18), rgba(201, 162, 39, 0.12));
}

.contact-card strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-card span:last-child {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
}

.contact-form-card {
  padding: 2rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.contact-form-title {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

.contact-form-lead {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.contact-form-notice {
  margin: 0 0 1.25rem;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  line-height: 1.5;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 8px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form .form-group {
  margin-bottom: 1rem;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.15);
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2394a3b8' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form.is-invalid input:invalid,
.contact-form.is-invalid textarea:invalid,
.contact-form.is-invalid select:invalid {
  border-color: #f87171;
}

.contact-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  cursor: pointer;
}

.contact-form-consent input {
  width: auto;
  margin-top: 0.2rem;
  accent-color: var(--accent);
}

.contact-form-submit {
  width: 100%;
}

.contact-form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.contact-form-success {
  text-align: center;
  padding: 2rem 1rem;
}

.contact-form-success-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.2);
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-form-success p {
  margin: 0 0 0.35rem;
}

.contact-form-success p strong {
  display: block;
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-form-card.is-sent .contact-form {
  display: none;
}

.contact-form-card.is-sent .contact-form-lead,
.contact-form-card.is-sent .contact-form-title {
  display: none;
}

/* Footer */
.site-footer {
  margin-top: auto;
  padding: 3rem 0 1.5rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand img,
.footer-brand svg {
  height: 32px;
  margin-bottom: 1rem;
}

.footer-brand h3 {
  margin: 0 0 0.75rem;
}

.footer-about {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 28rem;
}

.footer-col h3 {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--text);
  font-size: 0.95rem;
}

.footer-legal-notice {
  margin: 0 0 1.5rem;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.55;
  text-align: center;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: var(--radius);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.85rem;
}

/* Reviews section (all pages) */
.reviews-section {
  background: linear-gradient(180deg, transparent, rgba(17, 27, 46, 0.6));
  border-top: 1px solid var(--border);
}

.reviews-section-head {
  margin-bottom: 1.35rem;
}

.reviews-section-head--compact {
  margin-bottom: 1rem;
}

.reviews-list--preview {
  margin-bottom: 1.5rem;
}

.reviews-section-form {
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
}

.review-form-card {
  padding: 2rem;
  overflow: hidden;
}

.review-form-title {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

.review-form-lead {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}

.review-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-form .form-group {
  margin-bottom: 1rem;
}

.review-form-grid .form-group {
  margin-bottom: 0;
}

.review-form label,
.review-form .label-text {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.review-form .form-group--rating {
  padding: 1rem 1.15rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.review-form .form-group--rating .label-text {
  margin-bottom: 0.65rem;
}

.review-form input,
.review-form textarea,
.review-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.review-form input::placeholder,
.review-form textarea::placeholder {
  color: rgba(148, 163, 184, 0.65);
}

.review-form input:focus,
.review-form textarea:focus,
.review-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.15);
}

.review-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2394a3b8' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.review-form textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.55;
}

.field-hint {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
}

.review-form-submit {
  width: 100%;
  margin-top: 0.25rem;
}

.review-form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.review-form.is-invalid input:invalid,
.review-form.is-invalid textarea:invalid,
.review-form.is-invalid select:invalid {
  border-color: #f87171;
}

.review-form-card.card:hover {
  transform: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.star-rating {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.25rem;
}

.star-rating input {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.star-rating label {
  cursor: pointer;
  padding: 0.15rem;
  line-height: 0;
}

.star-rating svg {
  width: 32px;
  height: 32px;
  fill: var(--bg-elevated);
  stroke: var(--text-muted);
  stroke-width: 1;
  transition: fill 0.15s, transform 0.15s;
}

.star-rating label:hover svg,
.star-rating label:hover ~ label svg,
.star-rating input:checked ~ label svg,
.star-rating input:checked + label svg {
  fill: var(--accent-gold);
  stroke: var(--accent-gold);
  transform: scale(1.05);
}

.star-rating input:focus-visible + label svg {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.review-pending-badge {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fcd34d;
  background: rgba(252, 211, 77, 0.12);
  border: 1px solid rgba(252, 211, 77, 0.35);
  border-radius: 999px;
}

.review-card--pending {
  border-color: rgba(252, 211, 77, 0.35);
  background: linear-gradient(135deg, var(--bg-card), rgba(252, 211, 77, 0.04));
}

.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: min(400px, calc(100vw - 2rem));
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid rgba(45, 212, 191, 0.45);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  animation: toast-in 0.35s ease;
}

.toast.is-leaving {
  animation: toast-out 0.3s ease forwards;
}

.toast-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.2);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.toast-body strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}

.toast-body p {
  margin: 0;
  font-size: 0.85rem;
}

.toast-close {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  padding: 0;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes toast-out {
  to {
    opacity: 0;
    transform: translateY(8px);
  }
}

/* 404 */
.error-page {
  padding: 3rem 0 4rem;
}

.error-page-card {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 3rem;
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.error-page-code {
  margin: 0 0 0.5rem;
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.error-page-card h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.error-page-text {
  margin: 0 0 1.75rem;
}

.error-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.error-page-subtitle {
  text-align: center;
  font-size: 1.1rem;
  margin: 0 0 1.5rem;
  font-weight: 600;
}

.error-page-link {
  text-align: center;
  color: inherit;
  display: block;
}

.error-page-link:hover {
  color: inherit;
}

.error-page-link h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--text);
}

.error-page-link p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--accent);
}

/* Responsive */
@media (max-width: 992px) {
  .grid-2,
  .grid-3,
  .reviews-list {
    grid-template-columns: 1fr;
  }

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

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

  .section-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-layout__aside {
    position: static;
  }

  .section-layout__aside .review-quote-embed,
  .review-quote-embed--center {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .site-header .container {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .header-inner {
    gap: 0.5rem;
    min-height: 64px;
  }

  .logo-link {
    flex-shrink: 1;
    min-width: 0;
  }

  .logo-link img,
  .logo-link svg {
    height: 30px;
    width: auto;
    max-width: min(56vw, 180px);
  }

  .mobile-toggle,
  .mobile-menu-close {
    width: 44px;
    height: 44px;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-menu-close {
    display: flex;
  }

  .mobile-menu-overlay.is-visible,
  .mobile-menu.is-visible {
    display: block;
  }

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

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

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

  .contact-form-card {
    position: static;
  }

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

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

  .review-form-grid {
    grid-template-columns: 1fr;
  }

  .toast-container {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }
}
