:root {
  --hwd-ink: #17130f;
  --hwd-muted: #71665d;
  --hwd-soft: #f7f1e8;
  --hwd-cream: #fffaf3;
  --hwd-line: #e8dccd;
  --hwd-primary: #214337;
  --hwd-primary-dark: #10261f;
  --hwd-accent: #b98543;
  --hwd-accent-2: #d85f18;
  --hwd-white: #ffffff;
  --hwd-shadow: 0 24px 60px rgba(23, 19, 15, 0.14);
  --hwd-radius: 8px;
  --hwd-font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --hwd-font-heading: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.hwd-site {
  margin: 0;
  color: var(--hwd-ink);
  background: var(--hwd-cream);
  font-family: var(--hwd-font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

.hwd-site h1,
.hwd-site h2,
.hwd-site h3,
.hwd-site h4 {
  margin: 0 0 18px;
  font-family: var(--hwd-font-heading);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
}

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

.hwd-site a {
  color: inherit;
}

.hwd-site a:focus-visible,
.hwd-site button:focus-visible,
.hwd-site input:focus-visible,
.hwd-site select:focus-visible {
  outline: 3px solid rgba(185, 133, 67, 0.45);
  outline-offset: 3px;
}

.hwd-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.hwd-topbar {
  background: var(--hwd-primary-dark);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.hwd-topbar .hwd-shell,
.hwd-nav .hwd-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.hwd-top-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 10px 0;
}

.hwd-top-links a,
.hwd-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.hwd-top-links a:hover,
.hwd-footer a:hover,
.hwd-top-links a:focus-visible,
.hwd-footer a:focus-visible {
  color: var(--hwd-accent);
}

.hwd-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 243, 0.96);
  border-bottom: 1px solid rgba(232, 220, 205, 0.75);
  backdrop-filter: blur(14px);
}

.hwd-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 86px;
  text-decoration: none;
}

.hwd-logo img {
  width: 76px;
  height: auto;
}

.hwd-logo-name {
  max-width: 150px;
  color: var(--hwd-ink);
  font-family: var(--hwd-font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.05;
}

.hwd-nav-panel {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hwd-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hwd-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 13px;
  color: var(--hwd-ink);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: color 180ms ease;
}

.hwd-menu a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 4px;
  height: 2px;
  background: var(--hwd-accent);
  transform: scaleX(0);
  transition: transform 200ms ease;
}

.hwd-menu a:hover,
.hwd-menu a:focus-visible,
.hwd-menu .active a {
  color: var(--hwd-accent);
}

.hwd-menu a:hover::after,
.hwd-menu a:focus-visible::after,
.hwd-menu .active a::after {
  transform: scaleX(1);
}

.hwd-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  min-width: 46px;
  padding: 0 14px;
  border: 1px solid var(--hwd-primary);
  border-radius: var(--hwd-radius);
  background: var(--hwd-white);
  color: var(--hwd-primary);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.hwd-nav-toggle:hover,
.hwd-nav-toggle:focus-visible {
  background: var(--hwd-primary);
  border-color: var(--hwd-primary);
  color: #fff;
  transform: translateY(-1px);
}

.hwd-nav-toggle-box {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 18px;
}

.hwd-nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hwd-nav-toggle-text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hwd-nav.is-open .hwd-nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hwd-nav.is-open .hwd-nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.hwd-nav.is-open .hwd-nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hwd-book-btn,
.hwd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--hwd-accent);
  border-radius: var(--hwd-radius);
  background: var(--hwd-accent);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.hwd-book-btn:hover,
.hwd-book-btn:focus-visible,
.hwd-btn:hover,
.hwd-btn:focus-visible {
  background: #9c6f34;
  border-color: #9c6f34;
  transform: translateY(-2px);
}

.hwd-btn.secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff !important;
}

.hwd-section .hwd-btn.secondary,
.hwd-booking-band .hwd-btn.secondary,
.hwd-hotel-dialog .hwd-btn.secondary {
  background: transparent;
  border-color: var(--hwd-primary);
  color: var(--hwd-primary) !important;
}

.hwd-hero {
  position: relative;
  min-height: clamp(540px, calc(100dvh - 132px), 720px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--hwd-primary-dark);
}

.hwd-hero.small {
  min-height: 430px;
}

.hwd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 38, 31, 0.86) 0%, rgba(16, 38, 31, 0.58) 48%, rgba(16, 38, 31, 0.16) 100%),
    linear-gradient(0deg, rgba(16, 38, 31, 0.28), transparent 44%);
}

.hwd-hero.small::before {
  background:
    linear-gradient(90deg, rgba(16, 38, 31, 0.84) 0%, rgba(16, 38, 31, 0.58) 52%, rgba(16, 38, 31, 0.2) 100%),
    var(--hero-image) center / cover no-repeat;
}

.hwd-hero-media,
.hwd-hero-banner-slide {
  position: absolute;
  inset: 0;
}

.hwd-hero-banner-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 800ms ease, transform 5800ms ease;
}

.hwd-hero-banner-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hwd-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: clamp(70px, 10dvh, 96px) 0 clamp(112px, 16dvh, 150px);
  color: #fff;
}

.hwd-hero.small .hwd-hero-content {
  padding: 78px 0;
}

.hwd-hero-content h1 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(3.1rem, 7vw, 6.8rem);
}

.hwd-hero.small .hwd-hero-content h1 {
  font-size: clamp(2.45rem, 5.2vw, 4.6rem);
}

.hwd-hero-content p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.hwd-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--hwd-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hwd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hwd-hero-contact {
  position: absolute;
  right: max(24px, calc((100vw - 1200px) / 2));
  bottom: 118px;
  z-index: 3;
  width: min(320px, calc(100% - 48px));
  padding: 22px;
  border-left: 3px solid var(--hwd-accent);
  background: rgba(16, 38, 31, 0.76);
  color: #fff;
}

.hwd-hero-contact span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
}

.hwd-hero-contact a {
  color: #fff;
  font-family: var(--hwd-font-heading);
  font-size: 27px;
  font-weight: 700;
  text-decoration: none;
}

.hwd-hero-controls {
  position: absolute;
  right: 24px;
  top: 50%;
  z-index: 4;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.hwd-hero-controls button,
.hwd-lightbox-nav,
.hwd-lightbox-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(16, 38, 31, 0.62);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.hwd-hero-controls button:hover,
.hwd-hero-controls button:focus-visible {
  background: var(--hwd-accent);
  transform: translateY(-2px);
}

.hwd-hero-dots {
  position: absolute;
  left: max(24px, calc((100vw - 1200px) / 2));
  bottom: 48px;
  z-index: 4;
  display: flex;
  gap: 10px;
}

.hwd-hero-dots button {
  width: 36px;
  height: 4px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.hwd-hero-dots button.is-active {
  background: var(--hwd-accent);
}

.hwd-hero-banner.is-changing .hwd-hero-content {
  animation: hwdHeroText 480ms ease both;
}

@keyframes hwdHeroText {
  from {
    opacity: 0.55;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hwd-booking-band {
  position: relative;
  z-index: 6;
  margin-top: -78px;
}

.hwd-search-card {
  padding: 24px;
  border: 1px solid rgba(232, 220, 205, 0.88);
  border-radius: var(--hwd-radius);
  background: #fff;
  box-shadow: var(--hwd-shadow);
}

.hwd-booking-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.hwd-search-item {
  display: grid;
  gap: 8px;
}

.hwd-search-item span {
  color: var(--hwd-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hwd-search-item input,
.hwd-search-item select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--hwd-line);
  border-radius: var(--hwd-radius);
  background: var(--hwd-cream);
  color: var(--hwd-ink);
  padding: 0 12px;
  font: inherit;
  font-weight: 700;
}

.hwd-section {
  padding: 96px 0;
}

.hwd-section.soft {
  background: var(--hwd-soft);
}

.hwd-section.dark {
  background:
    linear-gradient(135deg, rgba(16, 38, 31, 0.96), rgba(33, 67, 55, 0.93)),
    url("../../images/IMG_6875.jpg") center / cover no-repeat;
  color: #fff;
}

.hwd-section.dark p,
.hwd-section.dark .hwd-section-head p {
  color: rgba(255, 255, 255, 0.76);
}

.hwd-section.dark h2,
.hwd-section.dark h3 {
  color: #fff;
}

.hwd-section-head {
  max-width: 720px;
  margin-bottom: 44px;
}

.hwd-section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.hwd-section-head h2,
.hwd-story-grid h2,
.hwd-food-grid h2,
.hwd-testimonial-grid h2,
.hwd-cta h2 {
  font-size: clamp(2.15rem, 4.4vw, 4.3rem);
}

.hwd-offers {
  padding-top: 118px;
}

.hwd-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hwd-offer-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 142px;
  padding: 22px;
  border: 1px solid var(--hwd-line);
  border-radius: var(--hwd-radius);
  background: #fff;
  box-shadow: 0 16px 40px rgba(23, 19, 15, 0.08);
}

.hwd-offer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: var(--hwd-radius);
  background: var(--hwd-soft);
  color: var(--hwd-accent);
  font-size: 38px;
}

.hwd-offer-card span {
  display: block;
  color: var(--hwd-accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hwd-offer-card h3 {
  margin: 6px 0 0;
  font-size: 22px;
}

.hwd-story-grid,
.hwd-food-grid,
.hwd-testimonial-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 64px;
  align-items: center;
}

.hwd-collage {
  position: relative;
  min-height: 560px;
}

.hwd-collage img {
  position: absolute;
  width: 96%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--hwd-radius);
  box-shadow: var(--hwd-shadow);
}

.hwd-collage img:first-child {
  top: 0;
  left: 0;
}

.hwd-collage img:nth-child(2) {
  right: 0;
  bottom: 0;
  width: 64%;
  height: 300px;
  border: 10px solid var(--hwd-cream);
}

.hwd-experience-badge {
  position: absolute;
  left: 32px;
  bottom: 52px;
  display: grid;
  width: 154px;
  height: 154px;
  align-content: center;
  justify-items: center;
  border-radius: 50%;
  background: var(--hwd-accent);
  color: #fff;
  text-align: center;
  box-shadow: var(--hwd-shadow);
}

.hwd-experience-badge strong {
  font-family: var(--hwd-font-heading);
  font-size: 20px;
  line-height: 1.05;
}

.hwd-icon-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.hwd-icon-row div {
  padding: 22px;
  border-left: 3px solid var(--hwd-accent);
  background: var(--hwd-soft);
}

.hwd-icon-row strong,
.hwd-icon-row span {
  display: block;
}

.hwd-icon-row strong {
  color: var(--hwd-primary);
  font-size: 13px;
  text-transform: uppercase;
}

.hwd-icon-row span {
  font-family: var(--hwd-font-heading);
  font-size: 24px;
  font-weight: 700;
}

.hwd-list,
.hwd-room-body ul,
.hwd-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hwd-list {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.hwd-list li,
.hwd-room-body li {
  position: relative;
  padding-left: 22px;
  color: var(--hwd-muted);
}

.hwd-list li::before,
.hwd-room-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hwd-accent);
}

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

.hwd-room-card {
  overflow: hidden;
  border-radius: var(--hwd-radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(23, 19, 15, 0.1);
  cursor: pointer;
}

.hwd-room-card:focus-visible {
  outline: 3px solid rgba(185, 133, 67, 0.45);
  outline-offset: 4px;
}

.hwd-room-card img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  transition: transform 450ms ease;
}

.hwd-room-card:hover img {
  transform: scale(1.045);
}

.hwd-room-body {
  padding: 28px;
}

.hwd-room-body h3 {
  margin-bottom: 8px;
  font-size: 29px;
}

.hwd-price {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--hwd-accent-2);
  font-weight: 700;
}

.hwd-room-body ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
}

.hwd-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hwd-feature {
  min-height: 180px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--hwd-radius);
  background: rgba(255, 255, 255, 0.07);
}

.hwd-feature h3 {
  font-size: 27px;
}

.hwd-facility-panel {
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(232, 220, 205, 0.78);
  border-radius: var(--hwd-radius);
  background: rgba(255, 255, 255, 0.72);
}

.hwd-facility-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--hwd-line);
}

.hwd-facility-hero h3 {
  max-width: 620px;
  color: var(--hwd-primary);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.hwd-facility-hero p {
  max-width: 640px;
}

.hwd-facility-feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 34px 0;
  border-bottom: 1px solid var(--hwd-line);
}

.hwd-facility-feature-row div {
  min-height: 178px;
  padding: 24px;
  border: 1px solid rgba(232, 220, 205, 0.66);
  border-radius: var(--hwd-radius);
  background: var(--hwd-cream);
}

.hwd-facility-feature-row span {
  display: block;
  margin-bottom: 18px;
  color: var(--hwd-accent);
  font-family: var(--hwd-font-heading);
  font-size: 30px;
  line-height: 1;
}

.hwd-facility-feature-row h3 {
  margin-bottom: 10px;
  color: var(--hwd-primary);
  font-size: 25px;
}

.hwd-facility-feature-row p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.hwd-facility-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 46px;
  padding-top: 38px;
}

.hwd-facility-list h3 {
  margin-bottom: 16px;
  color: var(--hwd-primary);
  font-size: 26px;
}

.hwd-facility-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hwd-facility-list li {
  position: relative;
  min-height: 42px;
  padding: 10px 0 10px 18px;
  border-bottom: 1px solid rgba(232, 220, 205, 0.58);
  color: var(--hwd-muted);
  line-height: 1.35;
}

.hwd-facility-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.2em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hwd-accent);
}

.hwd-food-grid img {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
  border-radius: var(--hwd-radius);
  box-shadow: var(--hwd-shadow);
}

.hwd-menu-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.hwd-menu-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hwd-line);
}

.hwd-menu-list strong {
  font-family: var(--hwd-font-heading);
  font-size: 24px;
}

.hwd-menu-list span {
  color: var(--hwd-accent);
  font-weight: 700;
}

.hwd-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.hwd-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--hwd-radius);
  cursor: pointer;
  transition: transform 220ms ease, filter 220ms ease;
}

.hwd-gallery img:hover,
.hwd-gallery img:focus-visible {
  filter: brightness(0.82);
  transform: translateY(-4px);
}

.hwd-testimonial-stack {
  display: grid;
  gap: 18px;
}

.hwd-testimonial {
  padding: 30px;
  border: 1px solid var(--hwd-line);
  border-radius: var(--hwd-radius);
  background: #fff;
  box-shadow: 0 16px 40px rgba(23, 19, 15, 0.08);
}

.hwd-testimonial p {
  color: var(--hwd-ink);
  font-family: var(--hwd-font-heading);
  font-size: 24px;
  line-height: 1.35;
}

.hwd-testimonial h3 {
  margin: 0;
  color: var(--hwd-accent);
  font-family: var(--hwd-font-body);
  font-size: 15px;
  text-transform: uppercase;
}

.hwd-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
}

.hwd-page-grid.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.hwd-image-panel {
  display: grid;
  gap: 16px;
}

.hwd-image-panel img,
.hwd-info-card img,
.hwd-map {
  width: 100%;
  border-radius: var(--hwd-radius);
  object-fit: cover;
}

.hwd-image-panel img:first-child {
  aspect-ratio: 1.18;
}

.hwd-image-panel img:nth-child(2) {
  width: 72%;
  aspect-ratio: 1.25;
  margin-top: -92px;
  margin-left: auto;
  border: 10px solid var(--hwd-cream);
  box-shadow: var(--hwd-shadow);
}

.hwd-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.hwd-info-card {
  overflow: hidden;
  border: 1px solid var(--hwd-line);
  border-radius: var(--hwd-radius);
  background: #fff;
  box-shadow: 0 16px 42px rgba(23, 19, 15, 0.08);
}

.hwd-info-card img {
  aspect-ratio: 1.35;
}

.hwd-info-card-body {
  padding: 26px;
}

.hwd-info-card h3 {
  font-size: 25px;
}

.hwd-contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  align-items: stretch;
}

.hwd-contact-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px;
  border: 1px solid var(--hwd-line);
  border-radius: var(--hwd-radius);
  background: #fff;
  box-shadow: 0 16px 42px rgba(23, 19, 15, 0.08);
}

.hwd-contact-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
}

.hwd-contact-list li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 6px 0;
  color: var(--hwd-muted);
  line-height: 1.55;
  transition: transform 0.22s ease, color 0.22s ease;
}

.hwd-contact-list li::before {
  content: none;
}

.hwd-contact-list li:hover {
  transform: translateY(-2px);
  color: var(--hwd-ink);
}

.hwd-contact-list i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(198, 166, 100, 0.16);
  box-shadow: 0 10px 22px rgba(10, 20, 17, 0.06);
  color: var(--hwd-accent);
  font-size: 20px;
  text-align: center;
  transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.hwd-contact-list li:hover i {
  transform: scale(1.05);
  background: rgba(198, 166, 100, 0.24);
  box-shadow: 0 14px 28px rgba(10, 20, 17, 0.1);
}

.hwd-contact-list span {
  display: block;
}

.hwd-contact-card .hwd-map,
.hwd-contact-card .hwd-actions {
  margin-top: auto;
}

.hwd-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.hwd-form-field {
  display: grid;
  gap: 8px;
}

.hwd-form-field.full {
  grid-column: 1 / -1;
}

.hwd-form-field span {
  color: var(--hwd-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hwd-form-field input,
.hwd-form-field textarea,
.hwd-form-field select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--hwd-line);
  border-radius: var(--hwd-radius);
  background: var(--hwd-cream);
  color: var(--hwd-ink);
  padding: 12px 14px;
  font: inherit;
}

.hwd-form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.hwd-room-selection {
  display: grid;
  gap: 14px;
}

.hwd-room-row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr) auto;
  gap: 14px;
  align-items: end;
}

.hwd-room-add,
.hwd-room-remove {
  min-height: 52px;
}

.hwd-room-remove {
  padding: 0 18px;
  border: 1px solid var(--hwd-line);
  border-radius: var(--hwd-radius);
  background: transparent;
  color: var(--hwd-muted);
  font: inherit;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.hwd-room-remove:hover {
  border-color: var(--hwd-accent);
  color: var(--hwd-accent);
  background: rgba(177, 127, 75, 0.08);
}

.hwd-room-remove[hidden] {
  display: none;
}

.hwd-contact-card form .hwd-actions {
  margin-top: 18px;
}

.hwd-map {
  margin-top: 22px;
  aspect-ratio: 1.45;
}

.hwd-map-band {
  position: relative;
  width: 100%;
  margin: 0;
  line-height: 0;
}

.hwd-map-embed {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
}

.hwd-map-link {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--hwd-radius);
  background: rgba(16, 38, 31, 0.9);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(10, 20, 17, 0.18);
}

.hwd-map-link:hover {
  background: var(--hwd-accent);
  color: #fff;
}

.hwd-policy-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.hwd-policy-summary div {
  padding: 22px;
  border: 1px solid rgba(232, 220, 205, 0.72);
  border-radius: var(--hwd-radius);
  background: #fff;
}

.hwd-policy-summary span {
  display: block;
  color: var(--hwd-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hwd-policy-summary strong {
  display: block;
  margin-top: 6px;
  color: var(--hwd-primary);
  font-family: var(--hwd-font-heading);
  font-size: 26px;
  line-height: 1.1;
}

.hwd-policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.hwd-policy-card {
  padding: 28px;
  border: 1px solid rgba(232, 220, 205, 0.72);
  border-radius: var(--hwd-radius);
  background: rgba(255, 255, 255, 0.76);
}

.hwd-policy-card.wide {
  grid-column: 1 / -1;
}

.hwd-policy-card h3 {
  margin-bottom: 16px;
  color: var(--hwd-primary);
  font-size: 26px;
}

.hwd-policy-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hwd-policy-card li {
  position: relative;
  padding-left: 18px;
  color: var(--hwd-muted);
  line-height: 1.45;
}

.hwd-policy-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hwd-accent);
}

.hwd-cta {
  padding: 92px 0;
  background: linear-gradient(135deg, #10261f 0%, #1b3a31 52%, #2b5348 100%);
  color: #fff;
}

.hwd-cta .hwd-shell {
  max-width: 780px;
  margin-left: max(16px, calc((100vw - 1200px) / 2));
}

.hwd-cta h2 {
  color: #fff;
}

.hwd-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.hwd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(10, 20, 17, 0.92);
}

.hwd-hotel-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  background: rgba(10, 20, 17, 0.78);
}

.hwd-hotel-modal.is-open {
  display: flex;
}

.hwd-hotel-dialog {
  position: relative;
  width: min(680px, 100%);
  max-height: calc(100dvh - 48px);
  overflow: auto;
  border-radius: var(--hwd-radius);
  background: #fff;
  box-shadow: var(--hwd-shadow);
}

.hwd-hotel-dialog img {
  width: 100%;
  aspect-ratio: 2.1;
  object-fit: cover;
}

.hwd-hotel-dialog-body {
  padding: 30px;
}

.hwd-hotel-dialog-body h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.hwd-hotel-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 22px 0;
}

.hwd-hotel-detail {
  padding: 14px;
  border: 1px solid var(--hwd-line);
  border-radius: var(--hwd-radius);
  background: var(--hwd-cream);
}

.hwd-hotel-detail span {
  display: block;
  color: var(--hwd-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hwd-hotel-detail strong {
  color: var(--hwd-ink);
  font-weight: 600;
}

.hwd-hotel-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: rgba(16, 38, 31, 0.74);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.hwd-room-modal {
  position: fixed;
  inset: 0;
  z-index: 1120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  background: rgba(10, 20, 17, 0.82);
}

.hwd-room-modal.is-open {
  display: flex;
}

.hwd-room-dialog {
  position: relative;
  width: min(980px, 100%);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  border-radius: var(--hwd-radius);
  background: #fff;
  box-shadow: var(--hwd-shadow);
}

.hwd-room-dialog-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: min(560px, calc(100dvh - 48px));
  max-height: calc(100dvh - 48px);
}

.hwd-room-slider {
  position: relative;
  min-height: min(560px, calc(100dvh - 48px));
  background: var(--hwd-soft);
}

.hwd-room-dialog-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hwd-room-dialog-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 260ms ease, transform 420ms ease;
}

.hwd-room-dialog-media img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hwd-room-slider::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(0deg, rgba(16, 38, 31, 0.48), transparent);
  pointer-events: none;
}

.hwd-room-slide-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(16, 38, 31, 0.66);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.hwd-room-slide-btn:hover,
.hwd-room-slide-btn:focus-visible {
  background: var(--hwd-accent);
}

.hwd-room-slide-prev {
  left: 18px;
}

.hwd-room-slide-next {
  right: 18px;
}

.hwd-room-slide-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 2;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hwd-room-slide-dots button {
  width: 30px;
  height: 4px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
}

.hwd-room-slide-dots button.is-active {
  background: var(--hwd-accent);
}

.hwd-room-dialog-body {
  min-height: 0;
  padding: 34px;
  overflow: auto;
}

.hwd-room-dialog-body h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.hwd-room-dialog-body h3 {
  margin-top: 26px;
  font-size: 24px;
}

.hwd-room-short {
  color: var(--hwd-ink) !important;
  font-size: 18px;
}

.hwd-room-amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hwd-room-amenities li {
  position: relative;
  padding-left: 22px;
  color: var(--hwd-muted);
}

.hwd-room-amenities li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hwd-accent);
}

.hwd-room-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: rgba(16, 38, 31, 0.78);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.hwd-lightbox.is-open {
  display: flex;
}

.hwd-lightbox-inner {
  position: relative;
  max-width: min(1040px, 100%);
  max-height: 86vh;
}

.hwd-lightbox img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  border-radius: var(--hwd-radius);
  object-fit: contain;
}

.hwd-lightbox-close {
  position: absolute;
  top: -22px;
  right: -22px;
  background: var(--hwd-accent);
}

.hwd-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.hwd-lightbox-prev {
  left: -70px;
}

.hwd-lightbox-next {
  right: -70px;
}

.hwd-lightbox-caption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
  font-weight: 700;
}

.hwd-footer {
  padding: 76px 0 24px;
  background: var(--hwd-primary-dark);
  color: #fff;
}

.hwd-footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.78fr 0.8fr 1.05fr;
  gap: 34px;
}

.hwd-footer h3 {
  color: #fff;
  font-size: 24px;
}

.hwd-footer p,
.hwd-footer li {
  color: rgba(255, 255, 255, 0.74);
}

.hwd-footer ul {
  display: grid;
  gap: 10px;
}

.hwd-footer-contact li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.hwd-footer-contact i {
  margin-top: 0.28em;
  color: var(--hwd-accent);
  font-size: 14px;
  text-align: center;
}

.hwd-footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.68);
}

.js-reveal-ready .hwd-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.js-reveal-ready .hwd-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hwd-room-grid .hwd-reveal:nth-child(2),
.hwd-feature-grid .hwd-reveal:nth-child(2),
.hwd-gallery .hwd-reveal:nth-child(2),
.hwd-offer-grid .hwd-reveal:nth-child(2) {
  transition-delay: 80ms;
}

.hwd-room-grid .hwd-reveal:nth-child(3),
.hwd-feature-grid .hwd-reveal:nth-child(3),
.hwd-gallery .hwd-reveal:nth-child(3),
.hwd-offer-grid .hwd-reveal:nth-child(3) {
  transition-delay: 150ms;
}

@media (max-width: 980px) {
  .hwd-topbar .hwd-shell {
    flex-wrap: wrap;
  }

  .hwd-nav .hwd-shell {
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
  }

  .hwd-logo {
    flex: 1 1 auto;
    min-height: auto;
    gap: 10px;
  }

  .hwd-logo img {
    width: 60px;
  }

  .hwd-logo-name {
    max-width: 120px;
    font-size: 18px;
  }

  .hwd-nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .hwd-nav-panel {
    display: none;
    margin-top: 12px;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(232, 220, 205, 0.85);
    border-radius: 12px;
    background: rgba(255, 250, 243, 0.98);
    box-shadow: 0 18px 40px rgba(23, 19, 15, 0.08);
  }

  .hwd-nav.is-open .hwd-nav-panel {
    display: flex;
  }

  .hwd-menu {
    flex-direction: column;
    width: 100%;
    gap: 6px;
  }

  .hwd-menu a,
  .hwd-book-btn {
    width: 100%;
    justify-content: center;
  }

  .hwd-menu a {
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid rgba(232, 220, 205, 0.9);
    border-radius: 10px;
    background: #fff;
  }

  .hwd-menu a::after {
    display: none;
  }

  .hwd-menu .active a {
    background: rgba(185, 133, 67, 0.12);
    border-color: rgba(185, 133, 67, 0.35);
  }

  .hwd-book-btn {
    min-height: 48px;
  }

  .hwd-booking-grid,
  .hwd-offer-grid,
  .hwd-room-grid,
  .hwd-feature-grid,
  .hwd-facility-feature-row,
  .hwd-facility-list,
  .hwd-policy-summary,
  .hwd-info-grid,
  .hwd-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hwd-story-grid,
  .hwd-food-grid,
  .hwd-testimonial-grid,
  .hwd-page-grid,
  .hwd-page-grid.reverse,
  .hwd-contact-grid,
  .hwd-room-dialog-grid,
  .hwd-facility-hero {
    grid-template-columns: 1fr;
  }

  .hwd-hero-contact {
    display: none;
  }

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

@media (max-width: 640px) {
  .hwd-map-embed {
    height: 360px;
  }

  .hwd-map-link {
    right: 16px;
    bottom: 16px;
  }

  .hwd-shell {
    width: min(100% - 24px, 1200px);
  }

  .hwd-topbar .hwd-shell {
    justify-content: center;
    text-align: center;
  }

  .hwd-hero {
    min-height: clamp(520px, calc(100dvh - 96px), 650px);
  }

  .hwd-hero-content {
    padding: 58px 0 106px;
  }

  .hwd-hero-content h1 {
    font-size: clamp(2.65rem, 15vw, 4.2rem);
  }

  .hwd-hero-controls {
    top: auto;
    right: 18px;
    bottom: 22px;
    grid-auto-flow: column;
    transform: none;
  }

  .hwd-hero-dots {
    left: 18px;
    bottom: 42px;
  }

  .hwd-booking-grid,
  .hwd-offer-grid,
  .hwd-room-grid,
  .hwd-feature-grid,
  .hwd-facility-feature-row,
  .hwd-facility-list,
  .hwd-facility-list ul,
  .hwd-policy-summary,
  .hwd-policy-grid,
  .hwd-info-grid,
  .hwd-footer-grid,
  .hwd-icon-row,
  .hwd-room-body ul,
  .hwd-room-amenities,
  .hwd-form-grid,
  .hwd-room-row,
  .hwd-hotel-details {
    grid-template-columns: 1fr;
  }

  .hwd-search-action .hwd-btn {
    width: 100%;
  }

  .hwd-section {
    padding: 72px 0;
  }

  .hwd-offers {
    padding-top: 96px;
  }

  .hwd-collage {
    min-height: auto;
  }

  .hwd-collage img,
  .hwd-collage img:first-child,
  .hwd-collage img:nth-child(2) {
    position: static;
    width: 100%;
    height: auto;
    min-height: 260px;
    margin-bottom: 14px;
    border: 0;
  }

  .hwd-experience-badge {
    left: 16px;
    bottom: 30px;
    width: 126px;
    height: 126px;
  }

  .hwd-experience-badge strong {
    font-size: 17px;
  }

  .hwd-image-panel img:nth-child(2) {
    width: 100%;
    margin-top: 0;
    border: 0;
  }

  .hwd-food-grid img {
    min-height: 290px;
  }

  .hwd-menu-list div {
    display: grid;
    gap: 2px;
  }

  .hwd-cta .hwd-shell {
    margin: 0 auto;
  }

  .hwd-lightbox {
    padding: 18px;
  }

  .hwd-lightbox-close {
    top: 10px;
    right: 10px;
  }

  .hwd-lightbox-prev {
    left: 10px;
  }

  .hwd-lightbox-next {
    right: 10px;
  }

  .hwd-logo-name {
    display: none;
  }

  .hwd-hotel-dialog-body {
    padding: 22px;
  }

  .hwd-room-modal {
    align-items: flex-start;
    padding: 14px;
    overflow: auto;
  }

  .hwd-room-dialog {
    max-height: none;
    overflow: visible;
  }

  .hwd-room-dialog-grid {
    min-height: 0;
    max-height: none;
  }

  .hwd-room-slider {
    min-height: clamp(260px, 48dvh, 330px);
  }

  .hwd-room-dialog-body {
    padding: 24px;
    overflow: visible;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js-reveal-ready .hwd-reveal {
    opacity: 1;
    transform: none;
  }
}
