/*
  Happiora — styles.css
  Naming: BEM with hm- namespace (Happiora)
  Breakpoints: 1080px, 920px, 620px
  Palette: alpine-forest, warm milk, soft stone, muted gold
*/

:root {
  --milk: #f6f4ef;
  --milk-2: #ebe8e0;
  --forest: #16231b;
  --forest-deep: #0f1a14;
  --stone: #9d998f;
  --stone-light: #c8c5be;
  --ink: #1a1d1b;
  --charcoal: #2c3530;
  --gold: #c6a46b;
  --gold-light: #dcc08d;
  --gold-dark: #9f7f47;
  --white: #ffffff;
  --error: #c86b6b;
  --success: #5b8c5a;
  --radius: 6px;
  --shadow-sm: 0 2px 8px rgba(15, 26, 20, 0.06);
  --shadow-md: 0 12px 28px rgba(15, 26, 20, 0.12);
  --shadow-lg: 0 24px 52px rgba(15, 26, 20, 0.18);
  --max-width: 1280px;
  --gutter: clamp(20px, 5vw, 80px);
  --reveal-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: "Inter", "Manrope", -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--milk);
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

address {
  font-style: normal;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.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;
}

/* Typography helpers */
.hm-title {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.18;
  color: var(--ink);
}

.hm-title--light {
  color: var(--milk);
}

.hm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.hm-kicker::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hm-kicker--center {
  justify-content: center;
}

.hm-kicker--center::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hm-subtitle {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--stone);
  max-width: 68ch;
}

/* Layout */
.hm-section {
  padding: clamp(64px, 8vw, 120px) var(--gutter);
}

.hm-section--dark {
  background-color: var(--forest-deep);
  color: var(--milk);
}

.hm-section--light {
  background-color: var(--milk);
  color: var(--ink);
}

.hm-container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
}

.hm-grid {
  display: grid;
  gap: 28px;
}

.hm-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.hm-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.hm-grid--5 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.hm-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Buttons */
.hm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.hm-btn--gold {
  color: var(--forest-deep);
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% 100%;
  background-position: 0% 50%;
}

.hm-btn--gold:hover,
.hm-btn--gold:focus-visible {
  background-position: 100% 50%;
  color: var(--forest-deep);
}

.hm-btn--outline {
  color: var(--milk);
  background: transparent;
  border: 1px solid var(--milk);
}

.hm-btn--outline:hover,
.hm-btn--outline:focus-visible {
  background: var(--milk);
  color: var(--forest-deep);
}

.hm-btn--dark {
  color: var(--milk);
  background: var(--forest-deep);
  border: 1px solid var(--forest-deep);
}

.hm-btn--dark:hover,
.hm-btn--dark:focus-visible {
  background: transparent;
  color: var(--forest-deep);
}

/* Header */
.hm-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px var(--gutter);
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.hm-header.is-scrolled {
  background: rgba(15, 26, 20, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

.hm-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin-inline: auto;
}

.hm-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--milk);
}

.hm-logo__mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(198, 164, 107, 0.35);
}

.hm-logo__text {
  display: flex;
  flex-direction: column;
}

.hm-logo__name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}

.hm-logo__tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 4px;
}

.hm-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.hm-nav__list {
  display: flex;
  gap: 32px;
}

.hm-nav__link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--milk);
  padding: 6px 0;
}

.hm-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.hm-nav__link:hover::after,
.hm-nav__link:focus-visible::after,
.hm-nav__link[aria-current="page"]::after {
  width: 100%;
}

.hm-header__aside {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hm-header__phone {
  font-size: 14px;
  font-weight: 500;
  color: var(--milk);
  letter-spacing: 0.02em;
}

.hm-burger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  color: var(--milk);
}

.hm-burger__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hm-burger[aria-expanded="true"] .hm-burger__bar:first-child {
  transform: translateY(8px) rotate(45deg);
}

.hm-burger[aria-expanded="true"] .hm-burger__bar:nth-child(2) {
  opacity: 0;
}

.hm-burger[aria-expanded="true"] .hm-burger__bar:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu */
.hm-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--forest-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.4s var(--reveal-ease);
}

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

.hm-mobile-menu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.hm-mobile-menu__link {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 5vw, 44px);
  color: var(--milk);
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hm-mobile-menu.is-open .hm-mobile-menu__link {
  opacity: 1;
  transform: translateX(0);
}

.hm-mobile-menu__link[aria-current="page"] {
  color: var(--gold);
}

.hm-mobile-menu__contacts {
  text-align: center;
  color: var(--stone);
  font-size: 14px;
  line-height: 1.9;
}

.hm-mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--milk);
  font-size: 32px;
  padding: 8px;
}

/* Hero */
.hm-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--forest);
}

.hm-hero__bg {
  position: absolute;
  inset: -10% 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hm-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(15, 26, 20, 0.85) 0%, rgba(15, 26, 20, 0.35) 60%, rgba(15, 26, 20, 0.15) 100%);
}

.hm-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 160px var(--gutter) 140px;
  color: var(--milk);
}

.hm-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  margin-bottom: 26px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(198, 164, 107, 0.35);
  border-radius: 100px;
}

.hm-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: hm-pulse 2.2s infinite;
}

@keyframes hm-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.35); }
}

.hm-hero__title {
  font-size: clamp(38px, 5.5vw, 72px);
  max-width: 16ch;
  margin-bottom: 24px;
}

.hm-hero__title em {
  color: var(--gold);
  font-style: normal;
}

.hm-hero__lead {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--stone-light);
  max-width: 60ch;
  margin-bottom: 38px;
}

.hm-hero__actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hm-hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--milk);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hm-hero__scroll::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: hm-bob 1.8s infinite;
}

@keyframes hm-bob {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.4); transform-origin: top; }
}

/* Page hero */
.hm-page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--forest);
}

.hm-page-hero__bg {
  position: absolute;
  inset: -8% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hm-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 26, 20, 0.9), rgba(15, 26, 20, 0.35));
}

.hm-page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 140px var(--gutter) 64px;
  color: var(--milk);
}

.hm-breadcrumb {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 14px;
}

.hm-breadcrumb a {
  color: var(--stone-light);
}

.hm-breadcrumb a:hover,
.hm-breadcrumb a:focus-visible {
  color: var(--gold);
}

.hm-page-hero__title {
  font-size: clamp(34px, 4.6vw, 56px);
}

/* Intro split */
.hm-intro__visual {
  position: relative;
}

.hm-intro__visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.hm-intro__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  padding: 24px 28px;
  background: var(--white);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-md);
}

.hm-intro__year {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
}

.hm-intro__year-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 6px;
}

.hm-intro__body h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  margin-bottom: 22px;
}

.hm-intro__body p {
  margin-bottom: 18px;
  color: var(--charcoal);
}

/* Cards */
.hm-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hm-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.hm-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.hm-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hm-card:hover .hm-card__media img {
  transform: scale(1.05);
}

.hm-card__body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hm-card__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  margin-bottom: 10px;
}

.hm-card__text {
  font-size: 15px;
  color: var(--charcoal);
  margin-bottom: 18px;
}

.hm-card__meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hm-card__price {
  font-size: 14px;
  color: var(--stone);
}

.hm-card__price strong {
  font-size: 20px;
  color: var(--gold-dark);
}

/* Experience / dark feature */
.hm-experience {
  background-color: var(--forest-deep);
  color: var(--milk);
}

.hm-experience__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hm-experience__title {
  font-size: clamp(28px, 3.6vw, 42px);
  color: var(--milk);
  margin-bottom: 22px;
}

.hm-experience__text {
  color: var(--stone-light);
  margin-bottom: 16px;
}

.hm-checklist {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hm-checklist__item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--stone-light);
  font-size: 15px;
}

.hm-checklist__item::before {
  content: "✓";
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 13px;
  flex-shrink: 0;
}

.hm-experience__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* Amenities */
.hm-amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}

.hm-amenity {
  text-align: center;
  padding: 34px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.hm-amenity:hover {
  transform: translateY(-4px);
}

.hm-amenity__icon {
  width: 52px;
  height: 52px;
  margin-inline: auto;
  margin-bottom: 18px;
  color: var(--gold);
}

.hm-amenity__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  margin-bottom: 10px;
}

.hm-amenity__text {
  font-size: 14px;
  color: var(--stone);
}

/* Booking form */
.hm-booking {
  background-color: var(--forest-deep);
  color: var(--milk);
}

.hm-booking__title {
  font-size: clamp(28px, 3.6vw, 42px);
  color: var(--milk);
  text-align: center;
  margin-bottom: 12px;
}

.hm-booking__lead {
  text-align: center;
  color: var(--stone-light);
  margin-bottom: 44px;
}

.hm-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hm-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hm-form__group--full {
  grid-column: 1 / -1;
}

.hm-form__group--half {
  grid-column: span 2;
}

.hm-form__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--stone-light);
  letter-spacing: 0.04em;
}

.hm-form__input,
.hm-form__select,
.hm-form__textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hm-form__input:focus,
.hm-form__select:focus,
.hm-form__textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 164, 107, 0.15);
}

.hm-form__input[aria-invalid="true"],
.hm-form__select[aria-invalid="true"],
.hm-form__textarea[aria-invalid="true"] {
  border-color: var(--error);
}

.hm-form__error {
  font-size: 13px;
  color: var(--error);
  display: none;
}

.hm-form__error.is-visible {
  display: block;
}

.hm-form__note {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--stone);
  text-align: center;
  margin-top: 8px;
}

.hm-form__btn {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 16px;
}

/* Testimonials */
.hm-testimonials {
  background-color: var(--milk);
}

.hm-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.hm-testimonial {
  padding: 34px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.hm-testimonial__quote {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 22px;
  color: var(--charcoal);
}

.hm-testimonial__quote::before {
  content: "“";
  color: var(--gold);
  font-size: 32px;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.hm-testimonial__author {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.hm-testimonial__location {
  font-size: 13px;
  color: var(--stone);
}

/* Disclaimer */
.hm-disclaimer {
  background: var(--milk-2);
  border-top: 1px solid var(--stone-light);
}

.hm-disclaimer__inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.hm-disclaimer__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--gold);
}

.hm-disclaimer__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  margin-bottom: 10px;
}

.hm-disclaimer__text {
  color: var(--charcoal);
  max-width: 80ch;
}

/* CTA band */
.hm-cta {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--forest);
}

.hm-cta__bg {
  position: absolute;
  inset: -12% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hm-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 20, 0.72);
}

.hm-cta__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 80px var(--gutter);
  color: var(--milk);
}

.hm-cta__title {
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 18px;
}

.hm-cta__text {
  color: var(--stone-light);
  margin-bottom: 28px;
}

/* Footer */
.hm-footer {
  background: var(--forest-deep);
  color: var(--milk);
  padding: 80px var(--gutter) 30px;
}

.hm-footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.25fr;
  gap: 48px;
  max-width: var(--max-width);
  margin-inline: auto;
  margin-bottom: 64px;
}

.hm-footer__col p,
.hm-footer__col address,
.hm-footer__col a {
  color: var(--stone-light);
  font-size: 14px;
  line-height: 1.9;
}

.hm-footer__col a:hover,
.hm-footer__col a:focus-visible {
  color: var(--gold);
}

.hm-footer__heading {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  color: var(--milk);
  margin-bottom: 18px;
}

.hm-footer__brand {
  margin-bottom: 18px;
}

.hm-footer__socials {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.hm-footer__social {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(198, 164, 107, 0.35);
  border-radius: 50%;
  color: var(--milk);
  transition: background 0.25s ease, color 0.25s ease;
}

.hm-footer__social:hover,
.hm-footer__social:focus-visible {
  background: var(--gold);
  color: var(--forest-deep);
  border-color: var(--gold);
}

.hm-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hm-footer__legal {
  border-top: 1px solid rgba(198, 164, 107, 0.15);
  padding-top: 36px;
  margin-top: 44px;
}

.hm-footer__legal-text {
  max-width: var(--max-width);
  margin-inline: auto;
  font-size: 13px;
  line-height: 1.8;
  color: var(--stone);
}

.hm-footer__disclaimer {
  max-width: var(--max-width);
  margin-inline: auto;
  margin-top: 28px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 2px solid var(--gold);
  font-size: 13px;
  color: var(--stone);
}

.hm-footer__bottom {
  max-width: var(--max-width);
  margin-inline: auto;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(198, 164, 107, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--stone);
}

/* Legal pages */
.hm-legal {
  background: var(--milk);
}

.hm-legal__updated {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 34px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 100px;
}

.hm-legal__body {
  max-width: 820px;
  margin-inline: auto;
}

.hm-legal__body h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  margin-top: 38px;
  margin-bottom: 14px;
}

.hm-legal__body h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  margin-top: 26px;
  margin-bottom: 10px;
}

.hm-legal__body p,
.hm-legal__body li {
  color: var(--charcoal);
  margin-bottom: 12px;
}

.hm-legal__body ul,
.hm-legal__body ol {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 16px;
}

.hm-legal__body a {
  color: var(--gold-dark);
  text-decoration: underline;
}

/* Stats */
.hm-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.hm-stat {
  padding: 26px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.hm-stat__value {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 38px;
  color: var(--gold);
  line-height: 1;
}

.hm-stat__label {
  font-size: 13px;
  color: var(--stone);
  margin-top: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Contact page */
.hm-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 54px;
}

.hm-contact-card {
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}

.hm-contact-card__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  margin-bottom: 14px;
}

.hm-contact-card__text,
.hm-contact-card a {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.8;
}

.hm-contact-card a:hover,
.hm-contact-card a:focus-visible {
  color: var(--gold);
}

.hm-map {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* Popup */
.hm-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 26, 20, 0.75);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hm-popup.is-open {
  opacity: 1;
  visibility: visible;
}

.hm-popup__panel {
  position: relative;
  max-width: 520px;
  width: 100%;
  padding: 48px;
  background: var(--white);
  border-radius: var(--radius);
  text-align: center;
  transform: translateY(24px);
  transition: transform 0.3s ease;
}

.hm-popup.is-open .hm-popup__panel {
  transform: translateY(0);
}

.hm-popup__close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 28px;
  color: var(--stone);
}

.hm-popup__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  margin-bottom: 14px;
}

.hm-popup__text {
  color: var(--charcoal);
  margin-bottom: 28px;
}

/* Cookie banner */
.hm-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  padding: 22px var(--gutter);
  background: var(--white);
  box-shadow: 0 -4px 24px rgba(15, 26, 20, 0.12);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.hm-cookie.is-visible {
  transform: translateY(0);
}

.hm-cookie__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max-width);
  margin-inline: auto;
  flex-wrap: wrap;
}

.hm-cookie__text {
  font-size: 14px;
  color: var(--charcoal);
  max-width: 76ch;
}

.hm-cookie__actions {
  display: flex;
  gap: 12px;
}

.hm-cookie__note {
  display: none;
  font-size: 14px;
  color: var(--gold-dark);
}

.hm-cookie__note.is-visible {
  display: block;
}

/* Reveal animations */
.hm-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--reveal-ease), transform 0.7s var(--reveal-ease);
  transition-delay: var(--reveal-delay, 0s);
}

@media (prefers-reduced-motion: reduce) {
  .hm-reveal {
    opacity: 1;
    transform: none;
  }
}

.hm-reveal--left {
  transform: translateX(-40px);
}

.hm-reveal--right {
  transform: translateX(40px);
}

.hm-reveal--zoom {
  transform: scale(0.96);
}

.hm-reveal.is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Utilities */
.hm-text-center {
  text-align: center;
}

.hm-mb-sm { margin-bottom: 16px; }
.hm-mb-md { margin-bottom: 32px; }
.hm-mb-lg { margin-bottom: 54px; }

/* Responsive */
@media (max-width: 1080px) {
  .hm-grid--3,
  .hm-grid--4,
  .hm-amenities__grid,
  .hm-testimonials__grid,
  .hm-stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hm-form__group--full,
  .hm-form__group--half,
  .hm-form__note,
  .hm-form__btn {
    grid-column: 1 / -1;
  }

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

@media (max-width: 920px) {
  .hm-nav__list,
  .hm-header__phone {
    display: none;
  }

  .hm-burger {
    display: flex;
  }

  .hm-split,
  .hm-experience__inner,
  .hm-contact-grid {
    grid-template-columns: 1fr;
  }

  .hm-intro__badge {
    right: 12px;
    bottom: -16px;
  }

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

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

@media (max-width: 620px) {
  .hm-grid--3,
  .hm-grid--4,
  .hm-grid--5,
  .hm-amenities__grid,
  .hm-testimonials__grid,
  .hm-stats,
  .hm-form,
  .hm-footer__grid {
    grid-template-columns: 1fr;
  }

  .hm-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hm-hero__title {
    font-size: 36px;
  }

  .hm-legal__body {
    padding-inline: 0;
  }

  .hm-cookie__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
