:root {
  --hm-bg: #f6f1e8;
  --hm-cream: #fffaf2;
  --hm-dark: #10100f;
  --hm-muted: #777064;
  --hm-gold: #b7955b;
  --hm-gold-dark: #8f6f35;
  --hm-green: #4f5b49;
  --hm-white: #ffffff;
  --hm-border: rgba(16, 16, 15, 0.12);
  --hm-shadow: 0 24px 80px rgba(16, 16, 15, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--hm-bg);
  color: var(--hm-dark);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.hm-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  padding: 24px 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.48), transparent);
}

.hm-navbar .navbar-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--hm-white);
}

.hm-navbar .nav-link {
  color: rgba(255,255,255,.88);
  font-size: 14px;
  letter-spacing: .5px;
  margin-left: 24px;
  font-weight: 600;
}

.hm-navbar .nav-link:hover {
  color: var(--hm-gold);
}

.hm-navbar .navbar-toggler {
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.1);
}

.hm-navbar .navbar-toggler-icon {
  filter: invert(1);
}

.hm-nav-btn {
  border: 1px solid rgba(255,255,255,.5);
  color: var(--hm-white);
  padding: 10px 20px;
  border-radius: 999px;
  margin-left: 24px;
  font-size: 14px;
  font-weight: 700;
}

.hm-nav-btn:hover {
  background: var(--hm-white);
  color: var(--hm-dark);
}

.hm-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--hm-white);
  background:
    linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.18)),
    url("../img/hero-houmly.jpg") center/cover no-repeat;
}

.hm-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 40%, rgba(183,149,91,.22), transparent 34%);
}

.hm-hero-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
  padding-top: 90px;
}

.hm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--hm-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 22px;
}

.hm-eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--hm-gold);
}

.hm-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(56px, 8vw, 112px);
  line-height: .88;
  font-weight: 600;
  letter-spacing: -3px;
  margin-bottom: 28px;
}

.hm-hero p {
  font-size: 19px;
  line-height: 1.8;
  max-width: 680px;
  color: rgba(255,255,255,.84);
}

.hm-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hm-btn-primary,
.hm-btn-secondary,
.hm-dark-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 800;
  transition: .28s ease;
}

.hm-btn-primary {
  background: var(--hm-gold);
  color: var(--hm-white);
}

.hm-btn-primary:hover {
  background: var(--hm-white);
  color: var(--hm-dark);
  transform: translateY(-2px);
}

.hm-btn-secondary {
  border: 1px solid rgba(255,255,255,.42);
  color: var(--hm-white);
}

.hm-btn-secondary:hover {
  background: rgba(255,255,255,.12);
  color: var(--hm-white);
}

.hm-dark-btn {
  background: var(--hm-dark);
  color: var(--hm-white);
}

.hm-dark-btn:hover {
  background: var(--hm-gold);
  color: var(--hm-white);
  transform: translateY(-2px);
}

.hm-hero-locations {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 34px;
}

.hm-location-strip {
  background: rgba(255,255,255,.11);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 16px 24px;
  color: rgba(255,255,255,.86);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.hm-search-box {
  margin-top: -38px;
  position: relative;
  z-index: 8;
}

.hm-search-panel {
  background: var(--hm-white);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,.14);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 14px;
  align-items: end;
}

.hm-search-panel label {
  display: block;
  font-size: 12px;
  color: var(--hm-muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.hm-search-panel select,
.hm-search-panel input {
  width: 100%;
  height: 52px;
  border: 1px solid var(--hm-border);
  border-radius: 16px;
  background: var(--hm-cream);
  padding: 0 14px;
  color: var(--hm-dark);
  outline: none;
}

.hm-search-panel button {
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--hm-dark);
  color: var(--hm-white);
  padding: 0 24px;
  font-weight: 800;
}

.hm-section {
  padding: 110px 0;
}

.hm-soft-section {
  padding-top: 60px;
}

.hm-section-header {
  max-width: 760px;
  margin-bottom: 54px;
}

.hm-section-header.text-center {
  margin-left: auto;
  margin-right: auto;
}

.hm-section-kicker {
  color: var(--hm-gold-dark);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 12px;
}

.hm-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 76px);
  line-height: .95;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.hm-section-text {
  color: var(--hm-muted);
  font-size: 18px;
  line-height: 1.8;
}

.hm-collection-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 26px;
}

.hm-property {
  position: relative;
  min-height: 520px;
  border-radius: 36px;
  overflow: hidden;
  background: var(--hm-dark);
  box-shadow: var(--hm-shadow);
}

.hm-property.large {
  grid-column: span 7;
}

.hm-property.medium {
  grid-column: span 5;
}

.hm-property.small {
  grid-column: span 4;
}

.hm-property img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform .8s ease;
  opacity: .86;
}

.hm-property:hover img {
  transform: scale(1.06);
}

.hm-property::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,.14) 58%, rgba(0,0,0,.04));
}

.hm-property-content {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 34px;
  color: var(--hm-white);
}

.hm-property-tag {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(14px);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hm-property h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  line-height: .95;
  margin-bottom: 10px;
}

.hm-property p {
  color: rgba(255,255,255,.8);
  font-size: 16px;
  max-width: 460px;
}

.hm-property-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 22px 0;
}

.hm-property-meta span {
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.16);
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 13px;
}

.hm-property-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hm-property-link {
  color: var(--hm-white);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hm-property-link:hover {
  color: var(--hm-gold);
}

.hm-property-link.light {
  color: rgba(255,255,255,.68);
}

.hm-experience {
  background: var(--hm-dark);
  color: var(--hm-white);
  border-radius: 46px;
  padding: 70px;
  position: relative;
  overflow: hidden;
}

.hm-experience::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(183,149,91,.28), transparent 65%);
  right: -120px;
  top: -120px;
}

.hm-experience h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 6vw, 82px);
  line-height: .95;
  position: relative;
  margin-bottom: 22px;
}

.hm-experience p {
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.8;
  position: relative;
}

.hm-feature {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  height: 100%;
  background: rgba(255,255,255,.04);
}

.hm-feature-number {
  color: var(--hm-gold);
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 800;
  margin-bottom: 16px;
}

.hm-feature h4 {
  font-size: 21px;
  margin-bottom: 12px;
}

.hm-feature p {
  font-size: 15px;
  margin-bottom: 0;
}

.hm-calendar-card {
  background: var(--hm-white);
  border: 1px solid var(--hm-border);
  border-radius: 38px;
  padding: 38px;
  box-shadow: 0 22px 65px rgba(16,16,15,.08);
}

.hm-calendar-head {
  margin-bottom: 20px;
}

.hm-calendar-head h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  margin-bottom: 4px;
}

.hm-calendar-head p {
  color: var(--hm-muted);
}

.hm-week-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--hm-border);
}

.hm-week-row:last-child {
  border-bottom: 0;
}

.hm-week-row strong {
  display: block;
  font-size: 18px;
}

.hm-week-row small {
  color: var(--hm-muted);
}

.hm-status {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hm-status.available {
  background: rgba(79,91,73,.12);
  color: var(--hm-green);
}

.hm-status.reserved {
  background: rgba(0,0,0,.08);
  color: var(--hm-muted);
}

.hm-status.last {
  background: rgba(183,149,91,.16);
  color: var(--hm-gold-dark);
}

.hm-preferred {
  background:
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,250,242,.78)),
    url("../img/preferred-houmly.jpg") center/cover;
  border-radius: 46px;
  padding: 80px;
  border: 1px solid var(--hm-border);
  box-shadow: 0 24px 80px rgba(16,16,15,.08);
}

.hm-preferred h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 6vw, 80px);
  line-height: .95;
  margin-bottom: 20px;
}

.hm-preferred p {
  max-width: 620px;
  color: var(--hm-muted);
  font-size: 18px;
  line-height: 1.8;
}

.hm-destinations {
  background: var(--hm-cream);
}

.hm-destination-card {
  background: var(--hm-white);
  border: 1px solid var(--hm-border);
  border-radius: 30px;
  padding: 34px;
  height: 100%;
  transition: .28s ease;
}

.hm-destination-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(16,16,15,.09);
}

.hm-destination-card span {
  color: var(--hm-gold-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hm-destination-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  margin: 18px 0 12px;
}

.hm-destination-card p {
  color: var(--hm-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.hm-contact-section {
  background: var(--hm-dark);
  color: var(--hm-white);
  padding: 110px 0;
}

.hm-contact-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(46px, 6vw, 84px);
  line-height: .95;
  margin-bottom: 22px;
}

.hm-contact-section p {
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.8;
}

.hm-contact-form {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 34px;
  padding: 34px;
}

.hm-contact-form input,
.hm-contact-form select,
.hm-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: var(--hm-white);
  border-radius: 18px;
  padding: 15px 16px;
  margin-bottom: 14px;
  outline: none;
}

.hm-contact-form input::placeholder,
.hm-contact-form textarea::placeholder {
  color: rgba(255,255,255,.58);
}

.hm-contact-form select {
  color: rgba(255,255,255,.72);
}

.hm-contact-form textarea {
  min-height: 120px;
  resize: none;
}

.hm-contact-form button {
  width: 100%;
  border: 0;
  background: var(--hm-gold);
  color: var(--hm-white);
  height: 56px;
  border-radius: 999px;
  font-weight: 900;
}

.hm-contact-form button:hover {
  background: var(--hm-white);
  color: var(--hm-dark);
}

.hm-footer {
  background: #0d0d0c;
  color: rgba(255,255,255,.72);
  padding: 80px 0 34px;
}

.hm-footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  color: var(--hm-white);
  margin-bottom: 14px;
}

.hm-footer p {
  max-width: 430px;
  line-height: 1.8;
}

.hm-footer h5 {
  color: var(--hm-white);
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hm-footer a {
  display: block;
  color: rgba(255,255,255,.62);
  margin-bottom: 10px;
}

.hm-footer a:hover {
  color: var(--hm-gold);
}

.hm-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 50px;
  padding-top: 24px;
  font-size: 13px;
}

@media (max-width: 991px) {
  .hm-navbar {
    background: rgba(16,16,15,.94);
    backdrop-filter: blur(14px);
    padding: 14px 0;
  }

  .hm-navbar .nav-link,
  .hm-nav-btn {
    margin-left: 0;
    margin-top: 12px;
  }

  .hm-hero {
    min-height: 94vh;
  }

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

  .hm-property.large,
  .hm-property.medium,
  .hm-property.small {
    grid-column: span 12;
  }

  .hm-experience,
  .hm-preferred {
    padding: 44px 28px;
    border-radius: 32px;
  }

  .hm-section {
    padding: 84px 0;
  }
}

@media (max-width: 576px) {
  .hm-navbar .navbar-brand {
    font-size: 30px;
  }

  .hm-hero {
    min-height: 100vh;
  }

  .hm-hero h1 {
    letter-spacing: -1px;
  }

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

  .hm-hero-actions {
    flex-direction: column;
  }

  .hm-btn-primary,
  .hm-btn-secondary,
  .hm-dark-btn {
    width: 100%;
  }

  .hm-location-strip {
    border-radius: 26px;
    justify-content: flex-start;
  }

  .hm-property,
  .hm-property img {
    min-height: 440px;
  }

  .hm-property-content {
    left: 22px;
    right: 22px;
    bottom: 24px;
  }

  .hm-property h3 {
    font-size: 34px;
  }

  .hm-property-meta span {
    font-size: 12px;
  }

  .hm-calendar-card {
    padding: 24px;
    border-radius: 28px;
  }

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

  .hm-preferred {
    padding: 38px 24px;
  }

  .hm-contact-form {
    padding: 24px;
  }
}