:root {
  --bg: #f6f4ec;
  --text: #17342e;
  --muted: #5f766f;
  --line: rgba(23, 52, 46, 0.12);
  --card: #ffffff;
  --primary: #177c63;
  --shadow: 0 18px 40px rgba(25, 59, 49, 0.12);
  --radius: 24px;
  --header-offset: 86px;
}

* {
  box-sizing: border-box;
  font-family: "Manrope", system-ui, sans-serif;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  background: linear-gradient(rgba(22, 57, 49, 0.3), rgba(22, 57, 49, 0.3)), url("./media/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
}

body.modal-open {
  overflow: hidden;
}

body.page main .container {
  padding: calc(var(--header-offset) + 40px) 40px 40px;
  background: rgba(12, 20, 18, 0.7);
  margin-bottom: -40px;
}

.page-title {
  margin: 0 0 24px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
}

body.page h1 {
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.1;
}

body.page h2 {
  font-size: clamp(21px, 2.3vw, 30px);
  line-height: 1.2;
}

body.page h3 {
  font-size: clamp(18px, 1.9vw, 24px);
  line-height: 1.2;
}

body.page .page-title {
  font-size: clamp(28px, 3.2vw, 38px);
}

h2 {
  margin: 0;
  padding-top: 8px;
  padding-bottom: 14px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 52.5px;
  color: #fff;
  text-transform: uppercase;
}

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 40px 0 0;
}

.section-soft {
  background: transparent;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 20px;
  text-align: center;
}

.section-head h2 {
  margin: 0;
}

.section-head p {
  margin: 0;
  color: #fff;
  font-size: 18px;
}

.about-locations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.location-card {
  background: linear-gradient(115deg, #163931 0%, #1b5949 100%);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 0 2px 0 var(--muted);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.location-gallery {
  display: grid;
  height: 350px;
  grid-template-columns: 1fr 0.4fr 1fr;
  grid-template-rows: 1.5fr 1fr;
  gap: 2px;
  border-radius: 22px;
  overflow: hidden;
}

.location-main-photo {
  grid-column: 1 / -1;
  background-size: cover;
  background-position: center;
}

.location-thumb-left {
  grid-column: 1 / 3;
}

.location-thumb-right {
  grid-column: 3 / 4;
}

.location-thumb {
  background-size: cover;
  background-position: center;
}

.location-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.location-content h3 {
  margin: 0 0 6px;
  font-size: 26px;
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
}

.location-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.15;
}

.why-us-wrap {
  display: grid;
  grid-template-columns: 1fr 0.2fr 1fr;
  gap: 16px;
  padding: 10px;
  border-radius: 28px;
}

.why-us-title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  border-radius: 22px;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.why-card {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 14px;
  align-items: center;
  border-radius: 22px;
  padding: 14px 16px;
  background: linear-gradient(115deg, #15342d 0%, #1b5949 100%);
}
.why-card:nth-child(2),
.why-card:nth-child(3),
.why-card:nth-child(6) {
  grid-column: span 2;
}

.why-card img {
  width: 126px;
  height: 126px;
  border-radius: 18px;
  object-fit: cover;
}

.why-card h3 {
  margin: 0 0 8px;
  font-size: 36px;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
}

.why-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
}

.accordion {
  display: grid;
  gap: 14px;
}

.accordion-item {
  border-radius: 26px;
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  border: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 26px;
  min-height: 140px;
  border-radius: 26px;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
}

.accordion-icon {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.accordion-icon svg {
  width: 45px;
  height: 45px;
  display: block;
  transition: transform 0.3s ease;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item.open .accordion-panel {
  max-height: 2000px;
}

.accordion-item.open .accordion-icon svg {
  transform: rotate(180deg);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 24px 24px 24px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 28px rgba(24, 49, 42, 0.06);
}

.service-card.service-card--quiz-match {
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(24, 49, 42, 0.12);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--text);
}

.service-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 18px;
  color: #44645c;
}

.service-meta span {
  margin-left: auto;
  text-align: right;
}

.service-meta strong {
  font-size: 24px;
  color: var(--text);
}

.service-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.service-tier {
  border-radius: 20px;
  border: 2px solid var(--muted);
  color: #5f766f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 20px;
  text-decoration: none;
  transition: 0.25s ease;
}

.service-tier:hover {
  transform: translateY(-1px);
}

.service-tier span {
  font-size: 12px;
  font-weight: 800;
  line-height: 18.6px;
  text-transform: uppercase;
}

.service-tier strong {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: inherit;
}

.service-tier-primary {
  background: linear-gradient(115deg, #15342d 0%, #1b5949 100%);
  color: #fff;
  border: none;
  padding: 10px 22px;
}

.gift-banner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #15342d 0%, #1b5949 100%);
  color: #fff;
  border-radius: 32px;
  overflow: hidden;
  padding: 34px;
  box-shadow: var(--shadow);
}

.gift-content h2 {
  margin: 10px 0 14px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.05;
  color: #fff;
  text-transform: none;
}

.gift-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.gift-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.gift-features span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.gift-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.gift-btn-white {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
}

.gift-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.gift-card-visual {
  display: flex;
  justify-content: center;
}

.certificate-card {
  width: min(100%, 390px);
  min-height: 240px;
  border-radius: 28px;
  padding: 0;
  position: relative;
}

.certificate-card::after {
  content: none;
}

.certificate-top,
.certificate-title,
.certificate-amount,
.certificate-note {
  position: relative;
  z-index: 1;
}

.certificate-top {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: #547067;
  font-weight: 800;
}

.certificate-title {
  margin: 24px 0 22px;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.05;
}

.certificate-amount {
  font-size: 38px;
  font-weight: 800;
  color: var(--primary);
}

.certificate-note {
  margin-top: 8px;
  color: #5b736c;
}

.certificate-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

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

.news-item {
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
  gap: 22px;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(24, 49, 42, 0.06);
}

.news-photo {
  position: relative;
  min-height: 250px;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background-size: cover;
  background-position: center;
}

.news-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 18, 15, 0.08), rgba(8, 18, 15, 0.68));
}

.news-photo h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1.08;
  max-width: 90%;
  text-transform: none;
}

.news-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 8px 8px 0;
}

.news-date {
  display: inline-flex;
  width: max-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef7f3;
  color: var(--primary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  margin-bottom: 16px;
}

.news-text p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.hidden-news {
  display: none;
}

.hidden-news.show {
  display: grid;
}

.center {
  text-align: center;
  margin-top: 28px;
}

.footer {
  margin-top: 40px;
  padding: 34px 0 46px;
  background: #16332d;
  color: #dceee8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.7fr;
  gap: 24px;
}

.footer-brand {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.footer h4 {
  margin: 0 0 12px;
  color: #fff;
}

.footer p,
.footer a {
  display: block;
  color: rgba(220, 238, 232, 0.82);
  margin: 0 0 8px;
}

.quiz-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
}

.quiz-modal.open {
  display: flex;
}

.quiz-modal-dialog {
  position: relative;
  width: min(100%, 960px);
  border-radius: 28px;
  background: #fff;
  padding: 56px 32px 36px;
  text-align: center;
}

.quiz-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: none;
  font-size: 32px;
  line-height: 1;
  color: #17342e;
  cursor: pointer;
}

.quiz-modal-dialog h2 {
  margin: 0 0 20px;
  color: #000;
  text-transform: none;
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.12;
}

.quiz-modal-start p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 28px;
}

.quiz-modal-btn {
  padding: 12px 26px;
}

.quiz-modal-content {
  display: none;
}

.quiz-modal-dialog.is-quiz .quiz-modal-start {
  display: none;
}

.quiz-modal-dialog.is-quiz .quiz-modal-content {
  display: block;
}

.quiz-modal-result {
  display: none;
}

.quiz-modal-dialog.is-result .quiz-modal-start,
.quiz-modal-dialog.is-result .quiz-modal-content {
  display: none;
}

.quiz-modal-dialog.is-result .quiz-modal-result {
  display: block;
}

.quiz-progress {
  width: 100%;
  height: 12px;
  border: 1px solid #6f8e86;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 26px;
}

.quiz-progress-bar {
  width: 34%;
  height: 100%;
  background: var(--primary);
}

.quiz-modal-content h3 {
  margin: 0 0 24px;
  color: #000;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
}

.quiz-options {
  background: linear-gradient(115deg, #15342d 0%, #1b5949 100%);
  border-radius: 28px;
  padding: 16px;
  margin-bottom: 18px;
}

.quiz-option {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-align: left;
  padding: 11px 16px;
  font-size: 24px;
  margin-bottom: 10px;
  cursor: pointer;
  display: block;
}

.quiz-option:last-child {
  margin-bottom: 0;
}

.quiz-option input {
  display: none;
}

.quiz-option span {
  display: block;
}

.quiz-option input:checked + span {
  color: #fff;
}

.quiz-option:has(input:checked) {
  background: rgba(220, 244, 238, 0.58);
}

.quiz-modal-result h3 {
  margin: 0 0 20px;
  color: #17342e;
  font-size: clamp(38px, 4.2vw, 56px);
  line-height: 1.1;
}

.quiz-modal-result #quizResultBody {
  margin: 0 0 18px;
  color: #3e5350;
  font-size: 18px;
  line-height: 1.35;
  text-align: left;
  white-space: pre-line;
}

.quiz-result-label {
  display: block;
  margin-bottom: 10px;
  color: #17342e;
  font-size: 18px;
  text-align: left;
}

.quiz-result-input {
  width: 100%;
  border: 1px solid #7d968f;
  border-radius: 16px;
  background: #fff;
  padding: 14px 16px;
  color: #17342e;
  font-size: 18px;
  margin-bottom: 20px;
}

.quiz-result-message {
  margin: 18px 0 0;
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
  text-align: center;
  white-space: pre-wrap;
  word-break: break-word;
  border: 1px solid rgba(27, 89, 73, 0.35);
  background: linear-gradient(
    160deg,
    rgba(220, 244, 238, 0.55) 0%,
    rgba(255, 255, 255, 0.92) 100%
  );
  color: #124a3d;
  box-shadow: 0 8px 24px rgba(21, 52, 45, 0.08);
}

.quiz-result-message[hidden] {
  display: none !important;
}

.quiz-result-message:not([hidden]) {
  display: block;
}

.quiz-result-message--error {
  border-color: rgba(165, 35, 35, 0.45);
  background: linear-gradient(
    165deg,
    rgba(255, 232, 232, 0.9) 0%,
    rgba(255, 255, 255, 0.95) 100%
  );
  color: #7a1f1f;
  box-shadow: 0 8px 22px rgba(122, 31, 31, 0.1);
}

.booking-box {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 24px;
  box-shadow: var(--shadow);
}

.booking-box h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  margin: 10px 0 12px;
  color: #000;
  text-transform: none;
}

.booking-box p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.booking-form {
  display: grid;
  gap: 14px;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--muted);
  border-radius: 18px;
  background: #fff;
  padding: 16px 18px;
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  outline: none;
}

.booking-form textarea {
  min-height: 130px;
  resize: vertical;
}

.booking-form textarea::placeholder {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
}

.booking-consent {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--muted);
}

.booking-consent input {
  display: none;
}

.booking-consent-checkbox {
  position: relative;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  border: 1px solid var(--muted);
  border-radius: 6px;
  background: transparent;
}

.booking-consent input:checked + .booking-consent-checkbox {
  background: var(--primary);
  border-color: var(--primary);
}

.booking-consent input:checked + .booking-consent-checkbox::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='10' viewBox='0 0 13 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.65304 10C4.39291 10 4.14579 9.88838 3.9637 9.69306L0.282893 5.74467C-0.0942975 5.34007 -0.0942975 4.67038 0.282893 4.26577C0.660083 3.86117 1.2844 3.86117 1.66159 4.26577L4.65304 7.47471L11.3384 0.303453C11.7156 -0.101151 12.3399 -0.101151 12.7171 0.303453C13.0943 0.708058 13.0943 1.37775 12.7171 1.78235L5.34239 9.69306C5.1603 9.88838 4.91317 10 4.65304 10Z' fill='white'/%3E%3C/svg%3E");
}

.booking-consent a {
  color: var(--primary);
  text-decoration: underline;
}

.booking-form-message {
  margin: 0;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(23, 124, 99, 0.35);
  background: rgba(23, 124, 99, 0.08);
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
}

.booking-form-message[hidden] {
  display: none !important;
}

.booking-form-message:not([hidden]) {
  display: block;
}

.booking-form-message--error {
  border-color: rgba(165, 35, 35, 0.45);
  background: rgba(255, 232, 232, 0.75);
  color: #7a1f1f;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--text);
}

.wide {
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 16px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(246, 244, 236, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(23, 52, 46, 0.08);
}

html:has(body.admin-bar) .header {
  top: 32px;
}
@media screen and (max-width:782px){
  html:has(body.admin-bar) .header {
    top: 46px;
  }
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: block;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-text strong {
  font-size: 18px;
  color: #17342e;
}

.logo-text span:last-child {
  color: var(--muted);
  font-size: 13px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #31554c;
  font-weight: 600;
}

.header-btn {
  white-space: nowrap;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.burger span {
  width: 26px;
  height: 2px;
  background: var(--text);
  display: block;
  border-radius: 4px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 0 16px 18px;
  border-top: 1px solid rgba(23, 52, 46, 0.08);
}

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

.mobile-menu a:not(.btn) {
  color: #000;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 74px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 20, 18, 0.52) 0%, rgba(12, 20, 18, 0.45) 100%),
    radial-gradient(circle at 15% 20%, rgba(0, 0, 0, 0.16), transparent 34%),
    radial-gradient(circle at 85% 25%, rgba(0, 0, 0, 0.18), transparent 28%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 20px 28px;
  align-items: center;
}

.hero-content h1 {
  margin: 10px 0 18px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  max-width: 720px;
  color: #fff;
}

.hero-content p {
  font-size: 19px;
  color: #fff;
  max-width: 640px;
  margin: 0 0 26px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-socials {
  display: flex;
  gap: 15px;
  grid-column: 1;
  justify-self: start;
}

.hero-social {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-social img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.hero-actions .btn-primary {
  background: linear-gradient(-115deg, #1b5949 0%, #15342d 100%);
  padding: 20px 30px;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid #17342e;
  box-shadow: 0 0 2px 0 #5f766f;
}

.hero-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 28px;
  backdrop-filter: blur(16px);
}

.hero-card-badge {
  display: inline-flex;
  background: #ebfaf4;
  color: var(--primary);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card h3 {
  margin: 16px 0 10px;
  font-size: 28px;
  color: #000;
}

.hero-card p {
  margin: 0;
  color: var(--muted);
}

.price-line {
  margin: 22px 0 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.price-line strong {
  font-size: 34px;
  line-height: 1;
  color: #000;
}

.price-line span {
  color: var(--muted);
}

@media (max-width: 1024px) {
  .nav,
  .header-btn {
    display: none;
  }

  .burger {
    display: flex;
  }

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

  .hero-socials {
    grid-column: auto;
    margin-top: 12px;
  }

  .about-locations {
    grid-template-columns: 1fr;
  }

  .why-us-wrap {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  :root {
    --header-offset: 64px;
  }
  html:has(body.admin-bar) {
    --header-offset: 104px;
  }

  body.page main .container {
    padding: calc(var(--header-offset) + 15px) 15px 15px;
  }

  body.page h1 {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.1;
  }

  .section {
    padding: 40px 0 0;
  }
  body.page h2 {
    font-size: clamp(20px, 6vw, 26px);
    line-height: 1.15;
  }

  body.page h3 {
    font-size: clamp(17px, 5vw, 22px);
    line-height: 1.15;
  }

  body.page .page-title {
    font-size: clamp(24px, 7vw, 30px);
    margin-bottom: 18px;
  }

  .hero {
    padding: 140px 0 56px;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .logo-mark {
    width: 65px;
    height: 65px;
  }

  .why-us-title {
    min-height: 120px;
    font-size: 40px;
  }

  .why-card {
    grid-template-columns: 96px 1fr;
    padding: 12px;
  }
  .why-card:nth-child(2),
  .why-card:nth-child(3),
  .why-card:nth-child(6) {
    grid-column: 1 / -1;
  }

  .why-card img {
    width: 96px;
    height: 96px;
    border-radius: 14px;
  }

  .why-card h3 {
    font-size: 30px;
  }

  .location-card {
    padding: 14px;
    border-radius: 22px;
  }

  .location-gallery {
    border-radius: 16px;
  }

  .location-content {
    padding: 14px 6px 6px;
  }

  .location-content h3 {
    font-size: 28px;
  }

  .location-content p {
    font-size: 22px;
  }

  .accordion-trigger {
    font-size: 20px;
    padding: 20px;
  }

  .service-list {
    grid-template-columns: 1fr;
    padding: 20px 18px 18px;
  }

  .service-tiers {
    grid-template-columns: 1fr;
  }

  .news-photo {
    min-height: 220px;
  }

  .news-photo h3 {
    font-size: 24px;
  }

  .news-text p {
    font-size: 16px;
  }

  .gift-banner {
    grid-template-columns: 1fr;
  }

  .booking-box {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .container {
    width: min(1180px, calc(100% - 20px));
  }

  .footer-grid > div:first-child {
    display: none;
  }

  .gift-mobile-hide {
    display: none;
  }

  .gift-features span {
    font-size: 14px;
  }

  .booking-mobile-hide {
    display: none;
  }

  .quiz-modal-dialog {
    padding: 42px 18px 24px;
    border-radius: 20px;
  }

  .quiz-modal-dialog p {
    font-size: 18px;
  }

  .quiz-modal-content h3 {
    font-size: 44px;
  }

  .quiz-option {
    font-size: 18px;
  }
}
