:root {
  --ink: #1b2428;
  --muted: #637174;
  --line: #dfe5e0;
  --paper: #fbfaf5;
  --white: #ffffff;
  --leaf: #0f5b4c;
  --gold: #b98234;
  --rose: #8d4b45;
  --shadow: 0 22px 60px rgba(16, 33, 37, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.dhm-homepage,
body.dhm-homepage #page,
body.dhm-homepage #content,
body.dhm-homepage .site-content,
body.dhm-homepage .ast-container,
body.dhm-homepage #primary,
body.dhm-homepage .content-area,
body.dhm-homepage article,
body.dhm-homepage .entry-content {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}

body.dhm-homepage .entry-header,
body.dhm-homepage .entry-title,
body.dhm-homepage .wp-block-post-title,
body.dhm-homepage header.site-header:not(.dhm-site .site-header),
body.dhm-homepage #secondary,
body.dhm-homepage .widget-area,
body.dhm-homepage footer.site-footer:not(.dhm-site .site-footer),
body.dhm-homepage .site-primary-footer-wrap,
body.dhm-homepage .site-below-footer-wrap {
  display: none !important;
}

body.dhm-homepage .dhm-site {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  overflow-x: hidden;
}

.topline {
  position: fixed;
  inset: 0 0 auto;
  z-index: 12;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px clamp(18px, 4vw, 56px);
  background: rgba(10, 18, 20, 0.92);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
}

img {
  display: block;
  width: 100%;
}

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

.site-header {
  position: fixed;
  inset: 32px 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(10, 18, 20, 0.94);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(5, 10, 12, 0.16);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: currentColor;
  font-size: 12px;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.header-action,
.button,
.booking-strip button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
}

.header-action,
.button.primary,
.booking-strip button {
  background: var(--gold);
  color: var(--white);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: 150px clamp(18px, 5vw, 72px) 76px;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(5, 10, 12, 0.86), rgba(5, 10, 12, 0.54), rgba(5, 10, 12, 0.3)),
    url("hotel-photos/room-grey-large.jpg");
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 24vh;
  background: linear-gradient(0deg, rgba(251, 250, 245, 0.92), rgba(251, 250, 245, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 690px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-meta span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 760px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 8vw, 112px);
  font-weight: 700;
}

.hero-content p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
}

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

.booking-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
  min-width: 0;
  padding: 22px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
}

.booking-card-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.booking-card-head span,
.booking-card-head small {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.booking-card-head strong {
  color: var(--leaf);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  line-height: 0.9;
}

.booking-strip label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.booking-strip input,
.booking-strip select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.booking-strip button {
  width: 100%;
}

.section {
  padding: 88px clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.key-details {
  background: #050707;
  color: var(--white);
}

.key-details h2 {
  color: var(--white);
}

.key-details address {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-style: italic;
  font-size: 18px;
}

.key-details > p {
  color: rgba(255, 255, 255, 0.68);
}

.rating-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 26px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: var(--white);
  color: var(--ink);
}

.rating-row span,
.rating-row strong {
  padding: 12px 18px;
  border-right: 1px solid var(--line);
  font-size: 14px;
}

.rating-row span {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.rating-row strong:last-child {
  border-right: 0;
}

.section h2 {
  color: var(--ink);
  max-width: 620px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 62px);
}

.intro > p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

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

.room-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.room-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.room-card div {
  padding: 22px;
}

.room-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.room-card p {
  min-height: 52px;
  margin: 0 0 18px;
  color: var(--muted);
}

.room-card span {
  color: var(--leaf);
  font-weight: 900;
}

.amenities {
  background: #edf3ef;
}

.local-seo {
  background: var(--white);
}

.seo-keywords {
  background: #f4f7f2;
}

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

.keyword-grid article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.keyword-grid h3 {
  margin: 0 0 12px;
  color: var(--leaf);
  font-size: 20px;
  line-height: 1.18;
}

.keyword-grid p {
  margin: 0;
  color: var(--muted);
}

.local-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.55fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

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

.nearby-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nearby-list li {
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 72px) 42px;
  background: var(--paper);
}

.facts div {
  display: grid;
  gap: 5px;
  min-height: 118px;
  align-content: center;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
}

.facts strong {
  color: var(--leaf);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.facts span {
  color: var(--muted);
  font-weight: 800;
}

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

.amenity {
  min-height: 190px;
  padding: 24px;
  border-top: 4px solid var(--leaf);
  background: var(--white);
}

.amenity span {
  display: block;
  margin-bottom: 28px;
  color: var(--rose);
  font-size: 20px;
  font-weight: 900;
}

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

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

.gallery-grid img {
  height: 280px;
  border-radius: 8px;
  object-fit: cover;
}

.gallery-grid img:first-child {
  grid-column: span 2;
  grid-row: span 2;
  height: 574px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.contact-panel p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
}

.map-panel {
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.faq {
  padding-top: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .topline {
    position: static;
    flex-direction: column;
    gap: 2px;
    padding-block: 10px;
  }

  .site-header {
    position: sticky;
    inset: auto 0 auto;
    top: 0;
    grid-template-columns: auto auto;
    padding-block: 14px;
    background: rgba(10, 18, 20, 0.94);
    color: var(--white);
    box-shadow: 0 8px 28px rgba(5, 10, 12, 0.16);
    backdrop-filter: blur(14px);
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: grid;
    place-content: center;
  }

  .nav-toggle span {
    width: 20px;
    margin: 2px auto;
  }

  .site-nav,
  .header-action {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-header.is-open .site-nav {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    overflow: hidden;
  }

  .site-header.is-open .site-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 820px;
    grid-template-columns: 1fr;
    padding-top: 56px;
  }

  .hero-content,
  .booking-strip {
    width: 100%;
    max-width: 100%;
  }

  .booking-strip {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .intro,
  .facts,
  .local-grid,
  .keyword-grid,
  .room-grid,
  .amenity-grid,
  .gallery-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .gallery-grid img,
  .gallery-grid img:first-child {
    height: 280px;
  }

  .map-panel iframe {
    height: 320px;
  }
}

@media (max-width: 560px) {
  body.dhm-homepage {
    overflow-x: hidden;
  }

  .hero {
    min-height: 860px;
    padding-inline: 18px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 50px);
    overflow-wrap: anywhere;
  }

  .hero-content p:not(.eyebrow),
  .eyebrow {
    overflow-wrap: anywhere;
  }

  .booking-strip {
    padding: 18px;
  }

  .booking-card-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .booking-card-head strong {
    font-size: 46px;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .button,
  .booking-strip button {
    width: 100%;
  }

  .section {
    padding-block: 64px;
  }
}
