/* ==========================================================================
   Souvenirjoyeux — Tropical Art Deco theme
   ========================================================================== */

:root {
  --midnight-teal: #0d3b3aff;
  --sunset-coral: #ef6a4dff;
  --cream: #f7ecd8ff;
  --brass-gold: #b8863bff;
  --jade: #1f7a5eff;
  --font-headings: 'Fraunces', serif;
  --font-body: 'Work Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--midnight-teal);
  line-height: 1.65;
  font-size: 1rem;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
}

ul {
  list-style-position: inside;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  padding: 0.9rem 2rem;
  text-decoration: none;
  border: 2px solid var(--brass-gold);
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.btn--coral {
  background-color: var(--sunset-coral);
  color: var(--cream);
}

.btn--coral:hover {
  background-color: var(--brass-gold);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn--outline {
  background-color: transparent;
  color: var(--cream);
  border-color: var(--sunset-coral);
}

.btn--outline:hover {
  background-color: var(--sunset-coral);
  color: var(--cream);
}

/* ==========================================================================
   Decorative elements
   ========================================================================== */

.deco-divider {
  display: flex;
  justify-content: center;
  padding: 1.5rem 0;
}

.deco-divider svg {
  width: min(420px, 80vw);
  height: 28px;
}

.img-frame {
  border: 3px solid var(--brass-gold);
  box-shadow: 8px 8px 0 0 var(--sunset-coral);
  background-color: var(--midnight-teal);
}

.img-frame--jade-shadow {
  box-shadow: 8px 8px 0 0 var(--jade);
}

.deco-frame {
  position: relative;
  border: 2px solid var(--brass-gold);
  padding: 2rem 2.5rem;
}

.deco-frame::before,
.deco-frame::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: var(--sunset-coral);
  transform: rotate(45deg);
}

.deco-frame::before {
  top: -9px;
  left: -9px;
}

.deco-frame::after {
  bottom: -9px;
  right: -9px;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  background-color: var(--midnight-teal);
  color: var(--cream);
  border-bottom: 4px solid var(--brass-gold);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.site-header__logo img {
  height: 52px;
  width: auto;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.site-header__brand {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
}

.nav__link {
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav__link:hover,
.nav__link--active {
  color: var(--sunset-coral);
  border-bottom-color: var(--brass-gold);
}

.nav__item--has-sub {
  position: relative;
}

.nav__sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: var(--midnight-teal);
  border: 1px solid var(--brass-gold);
  list-style: none;
  padding: 0.5rem 0;
  z-index: 110;
}

.nav__item--has-sub:hover .nav__sub,
.nav__item--has-sub:focus-within .nav__sub {
  display: block;
}

.nav__sub-link {
  display: block;
  padding: 0.55rem 1.1rem;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.85rem;
}

.nav__sub-link:hover {
  background-color: var(--jade);
  color: var(--cream);
}

.header-contacts {
  font-size: 0.78rem;
  text-align: right;
  line-height: 1.5;
}

.header-contacts a {
  color: var(--sunset-coral);
  text-decoration: none;
  border-bottom: 1px dotted var(--brass-gold);
}

.header-contacts a:hover {
  color: var(--cream);
}

.header-contacts__item {
  display: block;
  white-space: nowrap;
}

.burger {
  display: none;
  background: none;
  border: 2px solid var(--brass-gold);
  padding: 0.45rem 0.6rem;
  cursor: pointer;
}

.nav__close {
  display: none;
}

.nav__contacts {
  display: none;
}

.burger__bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--cream);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger--open .burger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger--open .burger__bar:nth-child(2) {
  opacity: 0;
}

.burger--open .burger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero--short {
  min-height: 46vh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 59, 58, 0.82) 0%, rgba(13, 59, 58, 0.55) 50%, rgba(13, 59, 58, 0.9) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 3rem 1.25rem;
  max-width: 860px;
}

.hero__kicker {
  color: var(--sunset-coral);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero__title {
  color: var(--cream);
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: 1.25rem;
}

.hero__title-frame {
  display: inline-block;
  border-top: 2px solid var(--brass-gold);
  border-bottom: 2px solid var(--brass-gold);
  padding: 0.5rem 1.5rem;
}

.hero__subtitle {
  color: var(--cream);
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero__meta {
  color: var(--brass-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  margin-top: 1.5rem;
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section {
  padding: 4rem 0;
}

.section--jade {
  background-color: var(--jade);
  color: var(--cream);
}

.section--jade .section__title {
  color: var(--cream);
}

.section--teal {
  background-color: var(--midnight-teal);
  color: var(--cream);
}

.section--teal .section__title {
  color: var(--cream);
}

.section__title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  text-align: center;
  margin-bottom: 0.75rem;
}

.section__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section__head {
  margin-bottom: 2.5rem;
}

.section__head .deco-divider {
  padding: 0.75rem 0 0;
}

/* ==========================================================================
   Split blocks (image + text)
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split--reverse .split__media {
  order: 2;
}

.split__title {
  font-size: clamp(1.5rem, 3.4vw, 2rem);
  margin-bottom: 1rem;
}

.split__text p + p {
  margin-top: 0.9rem;
}

.split__note {
  margin-top: 1rem;
}

.split__list {
  margin-top: 1rem;
  list-style: none;
}

.split__list li {
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.split__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  background-color: var(--sunset-coral);
  transform: rotate(45deg);
}

/* ==========================================================================
   Cards
   ========================================================================== */

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

.card {
  background-color: var(--cream);
  border: 2px solid var(--brass-gold);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 10px 10px 0 0 rgba(184, 134, 59, 0.35);
}

.card__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 3px solid var(--sunset-coral);
}

.card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card__title {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
  color: var(--midnight-teal);
}

.card__location {
  color: var(--sunset-coral);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.card__text {
  font-size: 0.95rem;
  flex-grow: 1;
  color: var(--midnight-teal);
}

.card__meta {
  font-size: 0.85rem;
  margin-top: 0.75rem;
  color: var(--jade);
  font-weight: 600;
}

.card__link {
  margin-top: 1.1rem;
  align-self: flex-start;
  color: var(--sunset-coral);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  text-decoration: none;
  border-bottom: 2px solid var(--brass-gold);
  padding-bottom: 0.15rem;
  transition: color 0.2s ease;
}

.card__link:hover {
  color: var(--midnight-teal);
}

/* ==========================================================================
   Collage
   ========================================================================== */

.collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.collage img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* ==========================================================================
   Stats
   ========================================================================== */

.stats {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.stats__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 59, 58, 0.92), rgba(31, 122, 94, 0.85));
}

.stats__inner {
  position: relative;
  z-index: 2;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat__number {
  font-family: var(--font-headings);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--brass-gold);
  display: block;
}

.stat__label {
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
}

.stats__title {
  color: var(--cream);
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 2.5rem;
}

/* ==========================================================================
   Responsible Gaming banner
   ========================================================================== */

.rg-banner {
  border: 2px solid var(--brass-gold);
  background-color: var(--midnight-teal);
  color: var(--cream);
  padding: 1.75rem 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.rg-banner__icon {
  flex-shrink: 0;
}

.rg-banner__title {
  color: var(--sunset-coral);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.rg-banner__text {
  font-size: 0.9rem;
}

/* ==========================================================================
   Gallery
   ========================================================================== */

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

.gallery__item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.gallery__caption {
  font-size: 0.82rem;
  padding: 0.6rem 0.2rem 0;
  color: var(--jade);
  font-style: italic;
}

.section--jade .gallery__caption,
.section--teal .gallery__caption {
  color: var(--cream);
}

/* ==========================================================================
   Rooms
   ========================================================================== */

.room {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px dashed var(--brass-gold);
}

.room:last-child {
  border-bottom: none;
}

.room--reverse .room__media {
  order: 2;
}

.room__media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.room__title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.room__price {
  display: inline-block;
  background-color: var(--sunset-coral);
  color: var(--cream);
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
  border-left: 4px solid var(--brass-gold);
}

/* ==========================================================================
   Steps
   ========================================================================== */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  counter-reset: step;
}

.step {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid var(--brass-gold);
  background-color: rgba(247, 236, 216, 0.08);
}

.step__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border: 2px solid var(--brass-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--midnight-teal);
}

.step__number {
  display: block;
  font-family: var(--font-headings);
  color: var(--sunset-coral);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.step__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step__text {
  font-size: 0.88rem;
}

/* ==========================================================================
   Services
   ========================================================================== */

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

.service {
  border: 2px solid var(--brass-gold);
  background-color: var(--cream);
}

.service img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-bottom: 3px solid var(--sunset-coral);
}

.service__body {
  padding: 1.25rem 1.4rem 1.5rem;
}

.service__title {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.service__text {
  font-size: 0.9rem;
}

/* ==========================================================================
   Related hotels
   ========================================================================== */

.related {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.related__card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem;
  align-items: center;
  border: 2px solid var(--brass-gold);
  padding: 1rem;
  text-decoration: none;
  background-color: var(--cream);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related__card:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 0 rgba(239, 106, 77, 0.35);
}

.related__thumb {
  width: 140px;
  height: 110px;
  object-fit: cover;
  border: 2px solid var(--sunset-coral);
}

.related__name {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  color: var(--midnight-teal);
  display: block;
}

.related__note {
  font-size: 0.85rem;
  color: var(--jade);
}

/* ==========================================================================
   Verdict
   ========================================================================== */

.verdict {
  border: 3px solid var(--brass-gold);
  padding: 2.5rem;
  text-align: center;
  position: relative;
}

.verdict::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 50%;
  width: 16px;
  height: 16px;
  background-color: var(--sunset-coral);
  transform: translateX(-50%) rotate(45deg);
}

.verdict__score {
  font-family: var(--font-headings);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--brass-gold);
  display: block;
  margin-bottom: 0.5rem;
}

.verdict__title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.verdict__text {
  max-width: 720px;
  margin: 0 auto;
}

.verdict__date {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sunset-coral);
}

/* ==========================================================================
   Forms
   ========================================================================== */

.form {
  max-width: 640px;
  margin: 0 auto;
  border: 2px solid var(--brass-gold);
  padding: 2.25rem;
  background-color: var(--cream);
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 2px solid var(--brass-gold);
  background-color: #fffdf7;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--midnight-teal);
}

.form__textarea {
  min-height: 130px;
  resize: vertical;
}

.form__input:focus,
.form__textarea:focus {
  outline: 3px solid rgba(239, 106, 77, 0.4);
  border-color: var(--sunset-coral);
}

.form__input--invalid,
.form__textarea--invalid {
  border-color: #c22f2f;
}

.form__error {
  display: none;
  color: #c22f2f;
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

.form__error--visible {
  display: block;
}

.form__submit {
  width: 100%;
}

/* ==========================================================================
   Toast
   ========================================================================== */

.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translate(-50%, 150%);
  background-color: var(--midnight-teal);
  color: var(--cream);
  border: 2px solid var(--brass-gold);
  border-left: 6px solid var(--sunset-coral);
  padding: 1rem 1.75rem;
  max-width: min(480px, 90vw);
  z-index: 300;
  transition: transform 0.35s ease;
  box-shadow: 0 10px 30px rgba(13, 59, 58, 0.4);
}

.toast--visible {
  transform: translate(-50%, 0);
}

.toast__title {
  font-family: var(--font-headings);
  color: var(--sunset-coral);
  margin-bottom: 0.25rem;
}

.toast__text {
  font-size: 0.9rem;
}

/* ==========================================================================
   Contact block
   ========================================================================== */

.contact-list {
  list-style: none;
}

.contact-list__item {
  padding: 0.9rem 0;
  border-bottom: 1px dashed var(--brass-gold);
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.contact-list__label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--jade);
  min-width: 110px;
  padding-top: 0.15rem;
}

.contact-list a {
  color: var(--sunset-coral);
  text-decoration: none;
  border-bottom: 1px dotted var(--brass-gold);
}

.contact-list a:hover {
  color: var(--midnight-teal);
}

/* ==========================================================================
   Team
   ========================================================================== */

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

.team__member {
  text-align: center;
}

.team__photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team__name {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.team__role {
  color: var(--sunset-coral);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  font-weight: 600;
}

.team__bio {
  font-size: 0.88rem;
  margin-top: 0.6rem;
}

/* ==========================================================================
   Values
   ========================================================================== */

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

.value {
  border-left: 4px solid var(--sunset-coral);
  padding: 1rem 1.5rem;
  background-color: rgba(247, 236, 216, 0.08);
}

.section--jade .value {
  background-color: rgba(13, 59, 58, 0.25);
}

.value__title {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.value__text {
  font-size: 0.92rem;
}

/* ==========================================================================
   Legal pages
   ========================================================================== */

.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
}

.legal h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  text-align: center;
  margin-bottom: 2.5rem;
}

.legal h2 {
  font-size: 1.4rem;
  margin: 2.25rem 0 0.75rem;
  color: var(--jade);
  border-bottom: 2px solid var(--brass-gold);
  padding-bottom: 0.35rem;
}

.legal p {
  margin-bottom: 0.9rem;
}

.legal ul,
.legal ol {
  margin: 0 0 1rem 1.25rem;
  list-style-position: outside;
}

.legal li {
  margin-bottom: 0.4rem;
}

.legal a {
  color: var(--sunset-coral);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background-color: var(--midnight-teal);
  color: var(--cream);
  border-top: 4px solid var(--brass-gold);
  margin-top: 4rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding: 3rem 0 2rem;
}

.site-footer__logo img {
  height: 48px;
  width: auto;
  margin-bottom: 0.75rem;
}

.site-footer__brand {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.site-footer__about {
  font-size: 0.85rem;
  opacity: 0.85;
}

.site-footer__title {
  color: var(--brass-gold);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}

.site-footer__list {
  list-style: none;
}

.site-footer__list li {
  margin-bottom: 0.5rem;
}

.site-footer__list a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.88rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease;
}

.site-footer__list a:hover {
  color: var(--sunset-coral);
  border-bottom-color: var(--brass-gold);
}

.site-footer__contacts {
  font-size: 0.85rem;
}

.site-footer__contacts a {
  color: var(--sunset-coral);
  text-decoration: none;
  border-bottom: 1px dotted var(--brass-gold);
}

.site-footer__contacts span {
  display: block;
  margin-bottom: 0.45rem;
}

.site-footer__company {
  font-size: 0.78rem;
  opacity: 0.8;
  margin-top: 1rem;
  line-height: 1.6;
}

.site-footer__rg {
  border-top: 1px solid rgba(184, 134, 59, 0.4);
  border-bottom: 1px solid rgba(184, 134, 59, 0.4);
  padding: 1.25rem 0;
  font-size: 0.8rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.site-footer__rg strong {
  color: var(--sunset-coral);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  white-space: nowrap;
}

.site-footer__bottom {
  padding: 1.25rem 0 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.85;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

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

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

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

@media (max-width: 900px) {
  .burger {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 85vw);
    background-color: var(--midnight-teal);
    border-left: 3px solid var(--brass-gold);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 200;
    overflow-y: auto;
    padding: 5rem 1.75rem 2rem;
  }

  .nav--open {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
  }

  .nav__sub {
    display: block;
    position: static;
    border: none;
    border-left: 2px solid var(--brass-gold);
    margin: 0.5rem 0 0.5rem 0.75rem;
    min-width: 0;
    background: transparent;
    padding: 0 0 0 0.75rem;
  }

  .nav__close {
    display: block;
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: 2px solid var(--brass-gold);
    color: var(--cream);
    font-size: 1rem;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-family: var(--font-body);
  }

  .nav__contacts {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(184, 134, 59, 0.4);
    font-size: 0.85rem;
    line-height: 1.8;
    display: block;
  }

  .nav__contacts a {
    color: var(--sunset-coral);
    text-decoration: none;
    border-bottom: 1px dotted var(--brass-gold);
  }

  .nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(13, 59, 58, 0.7);
    z-index: 150;
  }

  .nav__overlay--visible {
    display: block;
  }

  .split,
  .room,
  .room--reverse .room__media,
  .split--reverse .split__media {
    grid-template-columns: 1fr;
    order: initial;
  }

  .cards,
  .gallery,
  .services,
  .team,
  .collage {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 620px) {
  .cards,
  .gallery,
  .services,
  .team,
  .collage,
  .related,
  .steps {
    grid-template-columns: 1fr;
  }

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

  .related__thumb {
    width: 100%;
    height: 160px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

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

  .rg-banner {
    flex-direction: column;
    text-align: center;
  }

  .form {
    padding: 1.5rem;
  }

  .deco-frame {
    padding: 1.5rem;
  }
}
