/*
Theme Name: Twenty Twenty-Four
Theme URI: https://wordpress.org/themes/twentytwentyfour/
Author: the WordPress team
Author URI: https://wordpress.org
Description: Monochrome hotel directory theme — classic architecture with theme.json for CSS variables.
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 7.0
Version: 111.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyfour
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, sticky-post, threaded-comments, translation-ready, accessibility-ready, blog
*/

/* ===== CSS Variable Fallbacks (in case theme.json is not parsed) ===== */
:root {
  --wp--style--global--wide-size: 1280px;
  --wp--style--global--content-size: 620px;
  --wp--preset--font-family--heading: "Playfair Display", serif;
  --wp--preset--font-family--body: "Source Serif 4", "Source Serif Pro", Georgia, serif;
  --wp--preset--font-family--mono: "JetBrains Mono", "Fira Code", monospace;
  --wp--preset--font-size--small: 0.875rem;
  --wp--preset--font-size--medium: 1rem;
  --wp--preset--font-size--large: 1.75rem;
  --wp--preset--font-size--x-large: 2.5rem;
  --wp--preset--spacing--20: 0.44rem;
  --wp--preset--spacing--30: 0.67rem;
  --wp--preset--spacing--40: 1rem;
  --wp--preset--spacing--50: 1.5rem;
  --wp--preset--spacing--60: 2.25rem;
  --wp--preset--spacing--70: 3.38rem;
  --wp--preset--spacing--80: 5.06rem;
}

/* ===== GLOBAL: Zero radius, zero shadow ===== */
*,
*::before,
*::after {
  border-radius: 0 !important;
}

/* ===== TEXTURE: Paper noise (body) ===== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.018;
}


/* ===== SEPARATORS: Heavy rules between sections ===== */
.wp-block-separator {
  border-top: 4px solid var(--wp--preset--color--contrast) !important;
  border-bottom: none !important;
  opacity: 1 !important;
}

.wp-block-separator.is-style-wide {
  border-top-width: 8px !important;
}

hr.wp-block-separator.is-style-dots {
  border: none !important;
}

/* ===== BUTTONS: Instant transitions, sharp ===== */
.wp-block-button__link,
.wp-element-button {
  transition: all 100ms !important;
  padding: 1rem 2rem !important;
}

.wp-block-button__link:hover,
.wp-element-button:hover {
  background-color: var(--wp--preset--color--base) !important;
  color: var(--wp--preset--color--contrast) !important;
  outline: 2px solid var(--wp--preset--color--contrast);
  outline-offset: -2px;
}

/* Outline variant */
.is-style-outline .wp-block-button__link {
  background: transparent !important;
  color: var(--wp--preset--color--contrast) !important;
  border: 2px solid var(--wp--preset--color--contrast) !important;
  padding: calc(1rem - 2px) calc(2rem - 2px) !important;
}

.is-style-outline .wp-block-button__link:hover {
  background: var(--wp--preset--color--contrast) !important;
  color: var(--wp--preset--color--base) !important;
}

/* ===== PULLQUOTE: Oversized decorative quotation mark ===== */
.wp-block-pullquote {
  position: relative;
}

.wp-block-pullquote blockquote::before {
  content: "\201C";
  font-family: "Playfair Display", Georgia, serif;
  font-size: 10rem;
  line-height: 1;
  position: absolute;
  top: -2.5rem;
  left: -0.75rem;
  opacity: 0.06;
  pointer-events: none;
  font-weight: 900;
}

/* ===== IMAGES: Border + hover thicken ===== */
.wp-block-image img,
.wp-block-post-featured-image img {
  border: 2px solid var(--wp--preset--color--contrast);
  transition: border-width 100ms ease, transform 300ms ease;
}

.wp-block-image:hover img,
.wp-block-post-featured-image:hover img {
  border-width: 4px;
  transform: scale(1.015);
}

/* Grayscale option for blog image grids */
.wp-block-post-featured-image img {
  filter: grayscale(100%);
  transition: filter 300ms, border-width 100ms, transform 300ms;
}

.wp-block-post-featured-image:hover img {
  filter: grayscale(0%);
}

/* ===== POST META: Mono typography ===== */
.wp-block-post-date,
.wp-block-post-terms,
.wp-block-post-author-name,
.wp-block-post-author {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wp--preset--color--contrast-2);
}

/* ===== NAVIGATION ===== */
.wp-block-navigation .wp-block-navigation-item a {
  padding: 0.5rem 0;
  position: relative;
}

.wp-block-navigation .wp-block-navigation-item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--wp--preset--color--contrast);
  transition: width 100ms;
}

.wp-block-navigation .wp-block-navigation-item a:hover::after,
.wp-block-navigation .wp-block-navigation-item.current-menu-item a::after {
  width: 100%;
}

/* ===== INPUTS: Bottom-border style ===== */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="password"],
input[type="tel"],
input[type="number"],
textarea,
select {
  border: none !important;
  border-bottom: 2px solid var(--wp--preset--color--contrast) !important;
  background: transparent !important;
  padding: 0.75rem 0 !important;
  font-family: "Source Serif 4", Georgia, serif !important;
  font-size: 1rem !important;
  color: var(--wp--preset--color--contrast) !important;
}

input::placeholder,
textarea::placeholder {
  color: var(--wp--preset--color--contrast-2) !important;
  font-style: italic;
}

input:focus,
textarea:focus,
select:focus {
  border-bottom-width: 4px !important;
  outline: none !important;
}

/* ===== DROP CAP: Boxed editorial ===== */
.has-drop-cap:not(:focus)::first-letter {
  font-family: "Playfair Display", Georgia, serif !important;
  font-weight: 900;
  font-size: 4.5em;
  line-height: 0.85;
  float: left;
  margin: 0.05em 0.15em 0 0;
  padding: 0.1em 0.2em;
  border: 3px solid var(--wp--preset--color--contrast);
  background: var(--wp--preset--color--base);
  color: var(--wp--preset--color--contrast);
}

/* ===== HEADER ===== */
header.wp-block-template-part,
.site-header {
  border-bottom: 2px solid var(--wp--preset--color--contrast);
}

/* ===== FOOTER ===== */
footer.wp-block-template-part,
.site-footer {
  border-top: 4px solid var(--wp--preset--color--contrast);
}

/* ===== TABLES ===== */
.wp-block-table table {
  border-collapse: collapse;
}

.wp-block-table td,
.wp-block-table th {
  border: 1px solid var(--wp--preset--color--contrast);
  padding: 0.75rem 1rem;
}

.wp-block-table th {
  background: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base);
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

/* ===== FOCUS STATES (Accessibility) ===== */
.wp-block-button__link:focus-visible,
.wp-element-button:focus-visible {
  outline: 3px solid var(--wp--preset--color--contrast) !important;
  outline-offset: 3px !important;
}

a:focus-visible {
  outline: 2px solid var(--wp--preset--color--contrast);
  outline-offset: 2px;
}

/* ===== CARD HOVER INVERSION ===== */
.is-style-card {
  border: 1px solid var(--wp--preset--color--contrast);
  padding: 2rem;
  transition: background-color 100ms, color 100ms;
}

.is-style-card:hover {
  background-color: var(--wp--preset--color--contrast) !important;
  color: var(--wp--preset--color--base) !important;
}

.is-style-card:hover * {
  color: var(--wp--preset--color--base) !important;
}

/* ===== QUERY LOOP: Post grid borders ===== */
.wp-block-post-template .wp-block-post {
  border-bottom: 1px solid var(--wp--preset--color--accent-4);
  padding-bottom: var(--wp--preset--spacing--40);
}

.wp-block-post-template .wp-block-post:last-child {
  border-bottom: none;
}

/* ===== COMMENTS ===== */
.wp-block-comment-template .wp-block-comment {
  border-top: 1px solid var(--wp--preset--color--accent-4);
  padding-top: var(--wp--preset--spacing--40);
}

/* ===== TEXTURE: Grid (editorial sections) ===== */
.is-style-grid-texture {
  position: relative;
}

.is-style-grid-texture::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(#00000008 1px, transparent 1px),
    linear-gradient(90deg, #00000008 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.015;
  z-index: 0;
}

.is-style-grid-texture > * {
  position: relative;
  z-index: 1;
}

/* ===== TEXTURE: Diagonal lines (process/timeline sections) ===== */
.is-style-diagonal-texture {
  position: relative;
}

.is-style-diagonal-texture::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    #00000008 40px,
    #00000008 42px
  );
  opacity: 0.01;
  z-index: 0;
}

.is-style-diagonal-texture > * {
  position: relative;
  z-index: 1;
}

/* ===== TEXTURE: Radial glow (inverted CTA sections) ===== */
.has-contrast-background-color.is-style-radial-glow::after {
  background-image: radial-gradient(
    circle at top center,
    #ffffff,
    transparent 70%
  );
  opacity: 0.05;
}

/* ============================================================
   HEADER — Monochrome editorial header
   ============================================================ */
.site-header-main {
  border-bottom: 2px solid #000;
  background: #fff;
}

.site-header-inner {
  max-width: var(--wp--style--global--wide-size, 1152px);
  margin: 0 auto;
  padding: 0.75rem var(--wp--preset--spacing--50);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.site-header-brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.site-header-title {
  font-family: var(--wp--preset--font-family--heading);
  font-size: clamp(0.9rem, 0.9rem + 0.5vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
}

.site-header-title:hover {
  text-decoration: none;
}

/* Navigation */
.site-header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.site-header-nav .header-menu,
.site-header-nav ul.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0;
}

.site-header-nav .header-menu li,
.site-header-nav ul.menu li {
  position: relative;
}

.site-header-nav .header-menu > li > a,
.site-header-nav ul.menu > li > a {
  display: block;
  padding: 0.5rem 1rem;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  transition: all 100ms;
}

.site-header-nav .header-menu > li > a:hover,
.site-header-nav ul.menu > li > a:hover {
  background: #000;
  color: #fff;
}

.site-header-nav .header-menu > li.current-menu-item > a,
.site-header-nav ul.menu > li.current-menu-item > a,
.site-header-nav ul.menu > li.current_page_item > a {
  background: #000;
  color: #fff;
}

/* Submenu */
.site-header-nav .header-menu .sub-menu,
.site-header-nav ul.menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  background: #fff;
  border: 2px solid #000;
  min-width: 200px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-header-nav .header-menu li:hover > .sub-menu,
.site-header-nav ul.menu li:hover > .sub-menu {
  display: block;
}

.site-header-nav .sub-menu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #E5E5E5;
}

.site-header-nav .sub-menu li:last-child a {
  border-bottom: none;
}

.site-header-nav .sub-menu a:hover {
  background: #000;
  color: #fff;
}

/* Header actions (phone/email) */
.site-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.site-header-phone,
.site-header-email {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #000;
  text-decoration: none;
  transition: all 100ms;
}

.site-header-phone:hover,
.site-header-email:hover {
  text-decoration: underline;
}

/* Search toggle */
.site-header-search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: none;
  border: 2px solid #000;
  color: #000;
  cursor: pointer;
  padding: 0;
  transition: all 100ms;
}

.site-header-search-toggle:hover {
  background: #000;
  color: #fff;
}

/* Search overlay (hidden by default) */
.site-header-search-overlay {
  display: none;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

/* Active state: show overlay, hide nav + actions */
.site-header-main.search-active .site-header-search-overlay {
  display: flex;
}

.site-header-main.search-active .site-header-nav,
.site-header-main.search-active .site-header-actions {
  display: none !important;
}

/* Search form */
.site-header-search-form {
  display: flex;
  flex: 1;
  max-width: 600px;
  border: 2px solid #000;
}

.site-header-search-input {
  flex: 1;
  padding: 0.65rem 1.25rem;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.9375rem;
  border: none;
  background: #fff;
  color: #000;
  min-width: 0;
  outline: none;
}

.site-header-search-input::placeholder {
  color: #737373;
  font-style: italic;
}

.site-header-search-submit {
  padding: 0.65rem 1.75rem;
  background: #000;
  color: #fff;
  border: none;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 100ms;
}

.site-header-search-submit:hover {
  background: #333;
}

/* Close button */
.site-header-search-close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 2px solid #000;
  width: 38px;
  height: 38px;
  font-size: 1.5rem;
  line-height: 1;
  color: #000;
  cursor: pointer;
  padding: 0;
  transition: all 100ms;
}

.site-header-search-close:hover {
  background: #000;
  color: #fff;
}

/* Burger menu */
.site-header-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 2px solid #000;
  padding: 8px;
  cursor: pointer;
  width: 40px;
  height: 40px;
}

.site-header-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  transition: all 200ms;
}

/* ============================================================
   FOOTER — Monochrome editorial footer
   ============================================================ */
.site-footer {
  border-top: 4px solid #000;
  background: #000;
  color: #fff;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer-inner {
  max-width: var(--wp--style--global--wide-size, 1152px);
  margin: 0 auto;
  padding: var(--wp--preset--spacing--60) var(--wp--preset--spacing--50) var(--wp--preset--spacing--40);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--wp--preset--spacing--50);
}

/* Footer brand */
.site-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.site-footer-site-name {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}

.site-footer-description {
  font-size: var(--wp--preset--font-size--small);
  color: #737373;
  line-height: 1.5;
  margin: 0;
}

/* Footer columns */
.site-footer-heading {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: #fff;
}

.site-footer-column .footer-menu,
.site-footer-column ul.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer-column .footer-menu a,
.site-footer-column ul.menu a {
  font-size: var(--wp--preset--font-size--small);
  color: #a3a3a3;
  text-decoration: none;
  transition: color 100ms;
}

.site-footer-column .footer-menu a:hover,
.site-footer-column ul.menu a:hover {
  color: #fff;
  text-decoration: none;
}

/* Footer contact */
.site-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: var(--wp--preset--font-size--small);
  color: #a3a3a3;
}

.site-footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  stroke: #737373;
}

.site-footer-contact-item a {
  color: #a3a3a3;
}

.site-footer-contact-item a:hover {
  color: #fff;
}

/* Footer bottom */
.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--wp--preset--spacing--40);
  margin-top: var(--wp--preset--spacing--50);
  border-top: 1px solid #333;
}

.site-footer-copyright {
  font-size: var(--wp--preset--font-size--small);
  color: #737373;
}

.site-footer-social {
  display: flex;
  gap: 1rem;
}

.site-footer-social a {
  color: #737373;
  transition: color 100ms;
}

.site-footer-social a:hover {
  color: #fff;
}

.site-footer-social svg {
  fill: currentColor;
}

/* ============================================================
   HOMEPAGE
   ============================================================ */

/* ── Hero ── */
.hp-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hp-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hp-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 720px;
  padding: var(--wp--preset--spacing--50);
}

.hp-hero-eyebrow {
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: #fff;
}

.hp-hero-title {
  font-family: var(--wp--preset--font-family--heading);
  font-size: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  color: #fff !important;
}

.hp-hero-subtitle {
  font-family: var(--wp--preset--font-family--body);
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0 0 2rem;
  color: #fff;
}

.hp-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 150ms;
}

.hp-hero-btn:hover {
  background: #fff;
  color: #000;
}

/* ── Sections ── */
.hp-section {
  padding: var(--wp--preset--spacing--70) var(--wp--preset--spacing--50);
}

.hp-section-inner {
  max-width: var(--wp--style--global--wide-size, 1152px);
  margin: 0 auto;
}

.hp-section-header {
  text-align: center;
  margin-bottom: var(--wp--preset--spacing--60);
}

.hp-section-title {
  font-family: var(--wp--preset--font-family--heading);
  font-size: clamp(1.5rem, 1.25rem + 1.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: #000;
}

.hp-section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #000;
  margin: 0.75rem auto 0;
}

.hp-section-title--light {
  color: #fff;
}

.hp-section-title--light::after {
  background: #fff;
}

.hp-section-subtitle {
  font-family: var(--wp--preset--font-family--body);
  font-size: 1.0625rem;
  color: #525252;
  margin: 0;
  line-height: 1.6;
}

.hp-section-cta {
  text-align: center;
  margin-top: var(--wp--preset--spacing--50);
}

/* ── Buttons ── */
.hp-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border: 2px solid #000;
  background: transparent;
  color: #000;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 150ms;
}

.hp-btn-outline:hover {
  background: #000;
  color: #fff;
}

.hp-btn-outline--light {
  border-color: #fff;
  color: #fff;
}

.hp-btn-outline--light:hover {
  background: #fff;
  color: #000;
}

.hp-btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border: 2px solid #fff;
  background: #fff;
  color: #000;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 150ms;
}

.hp-btn-solid:hover {
  background: transparent;
  color: #fff;
}

/* ── Hotel cards grid ── */
.hp-hotel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.hp-hotel-card {
  border: 2px solid #000;
  overflow: hidden;
  transition: transform 150ms, box-shadow 150ms;
}

.hp-hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hp-hotel-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.hp-hotel-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #E5E5E5;
}

.hp-hotel-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms;
}

.hp-hotel-card:hover .hp-hotel-card-img img {
  transform: scale(1.05);
}

.hp-hotel-card-rating {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: #000;
  color: #fff;
  padding: 0.35rem 0.65rem;
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.75rem;
  font-weight: 700;
}

.hp-hotel-card-body {
  padding: 1rem;
}

.hp-hotel-card-title {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  line-height: 1.3;
  color: #000;
}

.hp-hotel-card-location {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: var(--wp--preset--font-size--small);
  color: #525252;
  margin: 0;
}

.hp-hotel-card-location svg {
  flex-shrink: 0;
}

/* ── Features (inverted) ── */
.hp-features {
  background: #000;
  color: #fff;
  padding: var(--wp--preset--spacing--70) var(--wp--preset--spacing--50);
}

.hp-features .hp-section-subtitle {
  color: #a3a3a3;
}

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

.hp-feature {
  text-align: center;
}

.hp-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #fff;
  margin: 0 auto 1.25rem;
}

.hp-feature-icon svg {
  stroke: #fff;
}

.hp-feature-title {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.hp-feature-desc {
  font-size: var(--wp--preset--font-size--small);
  color: #a3a3a3;
  line-height: 1.6;
  margin: 0;
}

/* ── Blog ── */
.hp-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hp-blog-card {
  border: 2px solid #000;
  overflow: hidden;
  transition: transform 150ms, box-shadow 150ms;
}

.hp-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hp-blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.hp-blog-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #E5E5E5;
}

.hp-blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms;
}

.hp-blog-card:hover .hp-blog-card-img img {
  transform: scale(1.05);
}

.hp-blog-card-body {
  padding: 1.25rem;
}

.hp-blog-card-date {
  display: block;
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #737373;
  margin: 0 0 0.5rem;
}

.hp-blog-card-title {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 0.5rem;
  color: #000;
}

.hp-blog-card-excerpt {
  font-size: var(--wp--preset--font-size--small);
  color: #525252;
  line-height: 1.5;
  margin: 0;
}

/* ── CTA Banner ── */
.hp-cta-banner {
  background: #000;
  color: #fff;
  padding: var(--wp--preset--spacing--70) var(--wp--preset--spacing--50);
  text-align: center;
}

.hp-cta-title {
  font-family: var(--wp--preset--font-family--heading);
  font-size: clamp(1.5rem, 1.25rem + 1.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.hp-cta-subtitle {
  font-size: 1.0625rem;
  color: #a3a3a3;
  margin: 0 0 2rem;
  line-height: 1.6;
}

.hp-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   HOTELS LISTING PAGE (.hl-*)
   ============================================================ */

/* ── Hero ── */
.hl-hero {
  background: #000;
  color: #fff;
  padding: var(--wp--preset--spacing--60) var(--wp--preset--spacing--50);
  text-align: center;
}

.hl-hero-inner {
  max-width: var(--wp--style--global--wide-size, 1152px);
  margin: 0 auto;
}

.hl-hero-title {
  font-family: var(--wp--preset--font-family--heading);
  font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.hl-hero-subtitle {
  font-family: var(--wp--preset--font-family--body);
  font-size: 1.0625rem;
  color: #a3a3a3;
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.hl-hero-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a3a3a3;
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: 1rem;
}

.hl-hero-stats-sep {
  color: #525252;
}

/* ── Filter bar ── */
.hl-filter-bar {
  border-bottom: 2px solid #000;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}

.hl-filter-inner {
  max-width: var(--wp--style--global--wide-size, 1152px);
  margin: 0 auto;
  padding: 1rem var(--wp--preset--spacing--50);
}

.hl-filter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-end;
}

.hl-filter-field {
  flex: 1;
  min-width: 140px;
}

.hl-filter-field input[type="text"],
.hl-filter-field select {
  width: 100%;
  padding: 0.6rem 0 !important;
  font-family: var(--wp--preset--font-family--body) !important;
  font-size: 0.875rem !important;
  border: none !important;
  border-bottom: 2px solid #000 !important;
  background: transparent !important;
  color: #000 !important;
}

.hl-filter-btn {
  padding: 0.6rem 1.5rem;
  background: #000;
  color: #fff;
  border: 2px solid #000;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 100ms;
  white-space: nowrap;
}

.hl-filter-btn:hover {
  background: #fff;
  color: #000;
}

.hl-filter-active {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
  font-size: var(--wp--preset--font-size--small);
  color: #525252;
}

.hl-filter-clear {
  color: #000;
  text-decoration: underline;
  font-weight: 600;
}

/* ── Hotel cards grid ── */
.hl-listing {
  padding: var(--wp--preset--spacing--60) var(--wp--preset--spacing--50);
}

.hl-listing-inner {
  max-width: var(--wp--style--global--wide-size, 1152px);
  margin: 0 auto;
}

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

.hl-card {
  border: 2px solid #000;
  overflow: hidden;
  transition: transform 150ms, box-shadow 150ms;
}

.hl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hl-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.hl-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #E5E5E5;
}

.hl-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms;
  border: none !important;
}

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

.hl-card-rating {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: #000;
  color: #fff;
  padding: 0.35rem 0.65rem;
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.75rem;
  font-weight: 700;
}

.hl-card-body {
  padding: 1rem;
}

.hl-card-stars {
  margin-bottom: 0.35rem;
}

.hl-card-stars .sh-stars {
  color: #000;
}

.hl-card-stars .sh-stars svg {
  width: 14px;
  height: 14px;
}

.hl-card-title {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  line-height: 1.3;
  color: #000;
}

.hl-card-location {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: var(--wp--preset--font-size--small);
  color: #525252;
  margin: 0 0 0.5rem;
}

.hl-card-location svg {
  flex-shrink: 0;
}

.hl-card-desc {
  font-size: var(--wp--preset--font-size--small);
  color: #737373;
  margin: 0;
  line-height: 1.5;
}

/* ── Pagination ── */
.hl-pagination {
  margin-top: var(--wp--preset--spacing--50);
  text-align: center;
}

.hl-pagination .page-numbers {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.hl-pagination .page-numbers li {
  display: inline;
}

.hl-pagination .page-numbers a,
.hl-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.5rem;
  border: 2px solid #000;
  margin-left: -2px;
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  transition: all 100ms;
}

.hl-pagination .page-numbers a:hover {
  background: #000;
  color: #fff;
}

.hl-pagination .page-numbers .current {
  background: #000;
  color: #fff;
}

/* ── No results ── */
.hl-no-results {
  padding: var(--wp--preset--spacing--70) var(--wp--preset--spacing--50);
  text-align: center;
}

.hl-no-results-inner {
  max-width: 500px;
  margin: 0 auto;
}

.hl-no-results h2 {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 1.5rem;
  margin: 1.5rem 0 0.75rem;
}

.hl-no-results p {
  color: #525252;
  margin: 0 0 1.5rem;
}

/* ── Hotels map ── */
.hl-map-section {
  padding: 0 var(--wp--preset--spacing--50);
  margin-bottom: var(--wp--preset--spacing--40);
  position: relative;
  z-index: 1;
}

.hl-map-inner {
  max-width: var(--wp--style--global--wide-size, 1152px);
  margin: 0 auto;
}

.hl-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.hl-map-title {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  color: #000;
}

.hl-map-toggle {
  border: 2px solid #000;
  background: transparent;
  padding: 0.375rem 1rem;
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 150ms;
  color: #000;
}

.hl-map-toggle:hover {
  background: #000;
  color: #fff;
}

#hl-hotels-map {
  width: 100%;
  height: 480px;
  border: 2px solid #000;
}

#hl-hotels-map.collapsed {
  display: none;
}

.hl-map-count {
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #737373;
  margin-top: 0.5rem;
}

/* InfoWindow */
.hl-infowindow {
  font-family: var(--wp--preset--font-family--body);
  max-width: 240px;
}

.hl-iw-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid #000;
}

.hl-iw-title {
  display: block;
  font-family: var(--wp--preset--font-family--heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
  color: #000;
}

.hl-iw-stars {
  display: block;
  font-size: 0.75rem;
  color: #000;
}

.hl-iw-loc {
  display: block;
  font-size: 0.75rem;
  color: #737373;
  margin-bottom: 0.5rem;
}

.hl-iw-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.hl-iw-rating {
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.75rem;
  font-weight: 700;
  background: #000;
  color: #fff;
  padding: 0.125rem 0.375rem;
}

.hl-iw-link {
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hl-iw-link:hover {
  text-decoration-thickness: 2px;
}

/* ============================================================
   SINGLE HOTEL PAGE (.sh-*)
   ============================================================ */

/* ── Gallery ── */
.sh-gallery {
  max-width: var(--wp--style--global--wide-size, 1152px);
  margin: 0 auto;
  padding: 0 var(--wp--preset--spacing--50);
}

.sh-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4px;
  border: 2px solid #000;
  overflow: hidden;
}

.sh-gallery-main {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.sh-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none !important;
}

.sh-gallery-side {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sh-gallery-thumb {
  flex: 1;
  overflow: hidden;
}

.sh-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none !important;
}

.sh-gallery-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  background: none;
  border: 2px solid #000;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 100ms;
}

.sh-gallery-all-btn:hover {
  background: #000;
  color: #fff;
}

/* ── Quick info ── */
.sh-quick-info {
  border-bottom: 2px solid #000;
}

.sh-quick-info-inner {
  max-width: var(--wp--style--global--wide-size, 1152px);
  margin: 0 auto;
  padding: 1.5rem var(--wp--preset--spacing--50);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.sh-title {
  font-family: var(--wp--preset--font-family--heading);
  font-size: clamp(1.5rem, 1.25rem + 1.5vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 0.35rem;
  line-height: 1.2;
}

.sh-title-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.sh-stars {
  display: inline-flex;
  gap: 2px;
  color: #000;
}

.sh-quick-info .sh-location {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: var(--wp--preset--font-size--small);
  color: #525252;
}

.sh-quick-info-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.sh-rating-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #000;
  color: #fff;
  padding: 0.75rem 1rem;
  min-width: 70px;
  text-align: center;
}

.sh-rating-number {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.sh-rating-label {
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.sh-cta-buttons {
  display: flex;
  gap: 0.5rem;
}

.sh-btn-book {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.5rem;
  background: #000;
  color: #fff;
  border: 2px solid #000;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 100ms;
}

.sh-btn-book:hover {
  background: #fff;
  color: #000;
}

.sh-btn-call {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.5rem;
  background: transparent;
  color: #000;
  border: 2px solid #000;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 100ms;
}

.sh-btn-call:hover {
  background: #000;
  color: #fff;
}

/* ── Sections shared ── */
.sh-section {
  padding: var(--wp--preset--spacing--50) var(--wp--preset--spacing--50);
}

.sh-section-inner {
  max-width: var(--wp--style--global--wide-size, 1152px);
  margin: 0 auto;
}

.sh-section-title {
  font-family: var(--wp--preset--font-family--heading);
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #000;
}

.sh-subsection-title {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

/* ── Address bar ── */
.sh-address-bar {
  border-bottom: 1px solid #E5E5E5;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.sh-address {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-style: normal;
  font-size: var(--wp--preset--font-size--small);
  color: #525252;
}

.sh-location .sh-address {
  margin-bottom: 1.5rem;
}

/* ── Overview ── */
.sh-overview {
  line-height: 1.7;
}

.sh-overview--with-sidebar {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.sh-overview-sidebar {
  border-left: 2px solid #000;
  padding-left: 2rem;
}

.sh-sidebar-title {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.sh-rule-group {
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 0;
}

.sh-rule-group summary {
  padding: 0.75rem 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.sh-rule-group summary::before {
  content: "+";
  display: inline-block;
  width: 1.25rem;
  font-weight: 700;
  font-family: var(--wp--preset--font-family--mono);
}

.sh-rule-group[open] summary::before {
  content: "\2212";
}

.sh-rule-group ul {
  padding: 0 0 0.75rem 1.25rem;
  margin: 0;
  font-size: var(--wp--preset--font-size--small);
  color: #525252;
}

.sh-rule-group ul li {
  padding: 0.2rem 0;
}

/* ── Rooms ── */
.sh-rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.sh-room-card {
  border: 2px solid #000;
  padding: 1.25rem;
}

.sh-room-name {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.sh-room-beds,
.sh-room-guests {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--wp--preset--font-size--small);
  color: #525252;
  margin: 0 0 0.35rem;
}

.sh-room-beds svg,
.sh-room-guests svg {
  flex-shrink: 0;
}

.sh-room-price {
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: #000;
  margin: 0.75rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid #E5E5E5;
}

/* ── Amenities ── */
.sh-amenity-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.sh-amenity-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.875rem;
  border: 1px solid #000;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sh-amenity-group {
  border-bottom: 1px solid #E5E5E5;
}

.sh-amenity-group summary {
  padding: 0.875rem 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.sh-amenity-group summary::marker,
.sh-amenity-group summary::-webkit-details-marker {
  display: none;
}

.sh-amenity-count {
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.75rem;
  color: #737373;
  background: #f5f5f5;
  padding: 0.2rem 0.5rem;
}

.sh-amenity-group ul {
  padding: 0 0 1rem 0;
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 2rem;
}

.sh-amenity-group ul li {
  font-size: var(--wp--preset--font-size--small);
  color: #525252;
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.sh-amenity-group ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  background: #000;
}

/* ── Reviews ── */
.sh-reviews-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: start;
}

.sh-reviews-score-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #000;
  color: #fff;
  padding: 1.5rem 2rem;
  text-align: center;
  min-width: 120px;
}

.sh-reviews-score-number {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.sh-reviews-score-label {
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.35rem;
}

.sh-reviews-score-count {
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #a3a3a3;
  margin-top: 0.25rem;
}

.sh-review-bars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sh-review-bar-row {
  display: grid;
  grid-template-columns: 140px 1fr 32px;
  gap: 0.75rem;
  align-items: center;
}

.sh-review-bar-label {
  font-size: var(--wp--preset--font-size--small);
  color: #525252;
  text-align: right;
}

.sh-review-bar-track {
  height: 8px;
  background: #E5E5E5;
  overflow: hidden;
}

.sh-review-bar-fill {
  height: 100%;
  background: #000;
  transition: width 300ms;
}

.sh-review-bar-value {
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.75rem;
  font-weight: 700;
}

/* Review items */
.sh-review-item {
  border-bottom: 1px solid #E5E5E5;
  padding: 1.25rem 0;
}

.sh-review-item.hidden {
  display: none;
}

.sh-review-item-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.sh-review-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #000;
  color: #fff;
  font-family: var(--wp--preset--font-family--heading);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.sh-review-meta {
  flex: 1;
}

.sh-review-name {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
}

.sh-review-from {
  font-weight: 400;
  color: #737373;
  font-size: var(--wp--preset--font-size--small);
}

.sh-review-date {
  display: block;
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  color: #737373;
}

.sh-review-score {
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.875rem;
  font-weight: 700;
  background: #f5f5f5;
  padding: 0.35rem 0.75rem;
  border: 1px solid #E5E5E5;
  flex-shrink: 0;
}

.sh-review-title {
  font-weight: 600;
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
}

.sh-review-text {
  font-size: var(--wp--preset--font-size--small);
  color: #525252;
  line-height: 1.6;
  margin: 0;
}

.sh-reviews-toggle {
  margin-top: 1.5rem;
}

/* ── Location ── */
.sh-location-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
  align-items: start;
}

#sh-hotel-map {
  width: 100%;
  height: 400px;
  border: 2px solid #000;
}

.sh-surroundings {
  max-height: 520px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.sh-surroundings .elems-list-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sh-surroundings .elem-list-title {
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.sh-surroundings .elem-list-ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sh-surroundings .elem-list-ul li {
  padding: 0.2rem 0;
  font-size: var(--wp--preset--font-size--small);
  color: #525252;
}

.sh-surroundings .surroundings-place {
  font-weight: 500;
  color: #000;
}

/* ── Contact ── */
.sh-contact {
  border-top: 2px solid #000;
}

/* ── Related ── */
.sh-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ── Tags ── */
.sh-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sh-tags a {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border: 1px solid #000;
  font-size: var(--wp--preset--font-size--small);
  text-decoration: none;
  color: #000;
  transition: all 100ms;
}

.sh-tags a:hover {
  background: #000;
  color: #fff;
}

/* ── Lightbox ── */
.sh-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
}

.sh-lightbox.active {
  display: flex;
}

.sh-lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: none !important;
}

.sh-lightbox-close,
.sh-lightbox-prev,
.sh-lightbox-next {
  position: absolute;
  background: none;
  border: 2px solid #fff;
  color: #fff;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  transition: all 100ms;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sh-lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  font-size: 2rem;
}

.sh-lightbox-prev {
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  font-size: 2rem;
}

.sh-lightbox-next {
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  font-size: 2rem;
}

.sh-lightbox-close:hover,
.sh-lightbox-prev:hover,
.sh-lightbox-next:hover {
  background: #fff;
  color: #000;
}

.sh-lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

/* ============================================================
   PAGES: About Us & Contact Us (pg-*, au-*, cu-*)
   ============================================================ */

/* ── Page hero (compact, black bg) ── */
.pg-hero {
  background: #000;
  color: #fff;
  padding: var(--wp--preset--spacing--50) var(--wp--preset--spacing--50);
  text-align: center;
}

.pg-hero-inner {
  max-width: var(--wp--style--global--wide-size, 1152px);
  margin: 0 auto;
}

.pg-hero-title {
  font-family: var(--wp--preset--font-family--heading);
  font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: #fff !important;
}

.pg-hero-subtitle {
  font-size: 1.0625rem;
  color: #a3a3a3;
  margin: 0;
  line-height: 1.6;
}

/* ── Page sections ── */
.pg-section {
  padding: var(--wp--preset--spacing--70) var(--wp--preset--spacing--50);
}

.pg-section-inner {
  max-width: var(--wp--style--global--wide-size, 1152px);
  margin: 0 auto;
}

.pg-section-header {
  text-align: center;
  margin-bottom: var(--wp--preset--spacing--60);
}

.pg-section-title {
  font-family: var(--wp--preset--font-family--heading);
  font-size: clamp(1.5rem, 1.25rem + 1.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: #000;
}

.pg-section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #000;
  margin: 0.75rem auto 0;
}

.pg-section-title--left {
  text-align: left;
}

.pg-section-title--left::after {
  margin-left: 0;
}

.pg-section-title--light {
  color: #fff;
}

.pg-section-title--light::after {
  background: #fff;
}

.pg-section-subtitle {
  font-family: var(--wp--preset--font-family--body);
  font-size: 1.0625rem;
  color: #525252;
  margin: 0;
  line-height: 1.6;
}

.pg-section--dark {
  background: #000;
  color: #fff;
}

.pg-section--dark .pg-section-subtitle {
  color: #a3a3a3;
}

/* ── Label / eyebrow ── */
.pg-label {
  display: block;
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #737373;
  margin-bottom: 0.75rem;
}

.pg-label--light {
  color: #a3a3a3;
}

/* ── About Us: Story ── */
.au-story-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: start;
}

.au-prose {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #525252;
}

.au-prose p {
  margin: 0 0 1rem;
}

/* ── About Us: Stats card ── */
.au-stats-card {
  border: 2px solid #000;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.au-stat {
  padding: 1.5rem;
  text-align: center;
}

.au-stat:nth-child(-n+2) {
  border-bottom: 1px solid #E5E5E5;
}

.au-stat:nth-child(odd) {
  border-right: 1px solid #E5E5E5;
}

.au-stat-number {
  display: block;
  font-family: var(--wp--preset--font-family--heading);
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.25rem;
}

.au-stat-label {
  display: block;
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #737373;
}

/* ── About Us: Values ── */
.au-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.au-value-card {
  text-align: center;
}

.au-value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #fff;
  margin: 0 auto 1.25rem;
}

.au-value-icon svg {
  stroke: #fff;
}

.au-value-title {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: #fff;
}

.au-value-desc {
  font-size: var(--wp--preset--font-size--small);
  color: #a3a3a3;
  line-height: 1.6;
  margin: 0;
}

/* ── About Us: Steps ── */
.au-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.au-step {
  text-align: center;
}

.au-step-num {
  width: 48px;
  height: 48px;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wp--preset--font-family--heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  color: #000;
}

.au-step-title {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: #000;
}

.au-step-text {
  font-size: var(--wp--preset--font-size--small);
  color: #525252;
  line-height: 1.6;
  margin: 0;
}

/* ── Contact Us: Layout ── */
.cu-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.cu-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cu-card {
  border: 2px solid #000;
  padding: 1.5rem;
}

.cu-card-icon {
  width: 48px;
  height: 48px;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.cu-card h3 {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.5rem;
  color: #000;
}

.cu-card p {
  font-size: var(--wp--preset--font-size--small);
  color: #525252;
  margin: 0;
  line-height: 1.5;
}

.cu-card a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cu-card a:hover {
  text-decoration-thickness: 2px;
}

/* ── Contact Us: Form ── */
.cu-form-title {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
  color: #000;
}

.cu-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.cu-form-group {
  margin-bottom: 1.25rem;
}

.cu-form-label {
  display: block;
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #737373;
  margin-bottom: 0.5rem;
}

.cu-form-input,
.cu-form-textarea {
  width: 100%;
  border: 2px solid #000;
  padding: 0.75rem 1rem;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.9375rem;
  background: #fff;
  color: #000;
  transition: box-shadow 150ms;
}

.cu-form-input:focus,
.cu-form-textarea:focus {
  outline: none;
  box-shadow: 0 0 0 1px #000;
}

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

.cu-form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border: 2px solid #000;
  background: transparent;
  color: #000;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 150ms;
}

.cu-form-submit:hover {
  background: #000;
  color: #fff;
}

/* ============================================================
   SINGLE POST (sp-*)
   ============================================================ */
.sp-article {
  max-width: var(--wp--style--global--wide-size, 1152px);
  margin: 0 auto;
}

.sp-featured {
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border-bottom: 2px solid #000;
}

.sp-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}

.sp-body {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--wp--preset--spacing--60) var(--wp--preset--spacing--50);
}

.sp-header {
  margin-bottom: var(--wp--preset--spacing--50);
  text-align: center;
}

.sp-title {
  font-family: var(--wp--preset--font-family--heading);
  font-size: clamp(1.75rem, 1.25rem + 2vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: #000;
}

.sp-meta {
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #737373;
}

.sp-meta-sep {
  margin: 0 0.5rem;
}

.sp-content {
  font-family: var(--wp--preset--font-family--body);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #262626;
}

.sp-content p {
  margin: 0 0 1.25rem;
}

.sp-content h2,
.sp-content h3,
.sp-content h4 {
  font-family: var(--wp--preset--font-family--heading);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000;
  margin: 2rem 0 1rem;
}

.sp-content h2 { font-size: 1.5rem; }
.sp-content h3 { font-size: 1.25rem; }
.sp-content h4 { font-size: 1.0625rem; }

.sp-content img {
  max-width: 100%;
  height: auto;
  border: 2px solid #000;
  filter: grayscale(100%);
}

.sp-content blockquote {
  border-left: 3px solid #000;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #525252;
}

.sp-content a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sp-content a:hover {
  text-decoration-thickness: 2px;
}

/* ── Post tags ── */
.sp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: var(--wp--preset--spacing--50);
  border-top: 1px solid #E5E5E5;
  margin-top: var(--wp--preset--spacing--50);
}

.sp-tag {
  display: inline-block;
  border: 1px solid #000;
  padding: 0.25rem 0.75rem;
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  transition: all 150ms;
}

.sp-tag:hover {
  background: #000;
  color: #fff;
}

/* ── Post navigation ── */
.sp-nav {
  border-top: 2px solid #000;
}

.sp-nav-inner {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.sp-nav-link {
  display: block;
  padding: var(--wp--preset--spacing--50);
  text-decoration: none;
  transition: background 150ms;
}

.sp-nav-link:hover {
  background: #F5F5F5;
}

.sp-nav-prev {
  border-right: 1px solid #E5E5E5;
}

.sp-nav-next {
  text-align: right;
  grid-column: 2;
}

.sp-nav-title {
  display: block;
  font-family: var(--wp--preset--font-family--heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000;
  margin-top: 0.25rem;
}

/* ============================================================
   ARCHIVE / GRID (ar-*)
   ============================================================ */
.ar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ar-card {
  border: 2px solid #000;
  overflow: hidden;
  transition: transform 150ms;
}

.ar-card:hover {
  transform: translateY(-2px);
}

.ar-card-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 2px solid #000;
}

.ar-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: filter 300ms;
}

.ar-card:hover .ar-card-img {
  filter: grayscale(0%);
}

.ar-card-body {
  padding: 1.25rem;
}

.ar-card-title {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.ar-card-title a {
  color: #000;
  text-decoration: none;
}

.ar-card-title a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ar-card-excerpt {
  font-size: var(--wp--preset--font-size--small);
  color: #525252;
  line-height: 1.6;
  margin: 0 0 0.75rem;
}

.ar-card-meta {
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #737373;
}

.ar-empty {
  text-align: center;
  font-size: 1.0625rem;
  color: #525252;
  padding: var(--wp--preset--spacing--60) 0;
}

/* Pagination (WordPress default classes) */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-top: var(--wp--preset--spacing--60);
}

.nav-links a,
.nav-links span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.5rem;
  border: 2px solid #000;
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  transition: all 150ms;
}

.nav-links a:hover {
  background: #000;
  color: #fff;
}

.nav-links .current {
  background: #000;
  color: #fff;
}

/* ============================================================
   SEARCH FORM (sr-*)
   ============================================================ */
.sr-form {
  display: flex;
  gap: 0.75rem;
  margin-bottom: var(--wp--preset--spacing--60);
  max-width: 600px;
}

.sr-input {
  flex: 1;
}

/* ============================================================
   404 PAGE (nf-*)
   ============================================================ */
.nf-code {
  display: block;
  font-family: var(--wp--preset--font-family--heading);
  font-size: clamp(5rem, 4rem + 5vw, 10rem);
  font-weight: 700;
  line-height: 1;
  color: #333;
  margin-bottom: 1rem;
}

.nf-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.nf-actions .sr-form {
  max-width: 500px;
  width: 100%;
  margin-bottom: 0;
}

.nf-home-btn {
  display: inline-flex;
}

/* ============================================================
   GENERIC PAGE CONTENT (pg-content)
   ============================================================ */
.pg-content {
  max-width: 720px;
  font-family: var(--wp--preset--font-family--body);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #262626;
}

.pg-content p {
  margin: 0 0 1.25rem;
}

.pg-content h2,
.pg-content h3,
.pg-content h4 {
  font-family: var(--wp--preset--font-family--heading);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000;
  margin: 2rem 0 1rem;
}

.pg-content h2 { font-size: 1.5rem; }
.pg-content h3 { font-size: 1.25rem; }

.pg-content img {
  max-width: 100%;
  height: auto;
  border: 2px solid #000;
}

.pg-content a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pg-content a:hover {
  text-decoration-thickness: 2px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 782px) {
  .wp-block-pullquote blockquote::before {
    font-size: 6rem;
  }

  .wp-block-post-featured-image img {
    filter: none;
  }

  /* Header mobile */
  .site-header-nav,
  .site-header-actions {
    display: none;
  }

  .site-header-search-toggle {
    display: flex;
    order: 1;
  }

  .site-header-burger {
    display: flex;
    order: 2;
  }

  /* Mobile search overlay */
  .site-header-main.search-active .site-header-search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 2px solid #000;
    padding: 1rem var(--wp--preset--spacing--50);
    z-index: 999;
  }

  .site-header-main.search-active .site-header-search-toggle {
    display: none !important;
  }

  .site-header-search-form {
    max-width: none;
  }

  /* Mobile nav open state */
  .site-header-main.nav-open .site-header-nav {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 2px solid #000;
    z-index: 999;
    padding: 1rem var(--wp--preset--spacing--50);
  }

  .site-header-main.nav-open .site-header-nav .header-menu,
  .site-header-main.nav-open .site-header-nav ul.menu {
    flex-direction: column;
  }

  .site-header-main.nav-open .site-header-nav .header-menu > li > a,
  .site-header-main.nav-open .site-header-nav ul.menu > li > a {
    padding: 0.75rem 0;
    border-bottom: 1px solid #E5E5E5;
  }

  .site-header-main.nav-open .site-header-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem var(--wp--preset--spacing--50) 0;
  }

  .site-header-inner {
    position: relative;
  }

  /* Homepage mobile */
  .hp-hero {
    min-height: 60vh;
  }

  .hp-hero-title {
    font-size: clamp(2rem, 1.5rem + 3vw, 3rem);
  }

  .hp-hotel-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hp-features-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hp-blog-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hp-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* About Us mobile */
  .au-story-grid {
    grid-template-columns: 1fr;
  }

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

  .au-steps-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Contact Us mobile */
  .cu-layout {
    grid-template-columns: 1fr;
  }

  .cu-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cu-card {
    flex: 1;
    min-width: 200px;
  }

  .cu-form-row {
    grid-template-columns: 1fr;
  }

  /* Hotels listing mobile */
  .hl-hero-stats {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hl-hero-stats-sep {
    display: none;
  }

  .hl-filter-form {
    flex-direction: column;
  }

  .hl-filter-field {
    min-width: 100%;
  }

  .hl-hotels-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  #hl-hotels-map {
    height: 320px;
  }

  .hl-map-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  /* Single hotel mobile */
  .sh-gallery-grid {
    grid-template-columns: 1fr;
  }

  .sh-gallery-side {
    flex-direction: row;
  }

  .sh-quick-info-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sh-quick-info-right {
    width: 100%;
    justify-content: space-between;
  }

  .sh-overview--with-sidebar {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sh-overview-sidebar {
    border-left: none;
    border-top: 2px solid #000;
    padding-left: 0;
    padding-top: 1.5rem;
  }

  .sh-rooms-grid {
    grid-template-columns: 1fr;
  }

  .sh-amenity-group ul {
    grid-template-columns: 1fr;
  }

  .sh-reviews-header {
    grid-template-columns: 1fr;
  }

  .sh-review-bar-row {
    grid-template-columns: 100px 1fr 32px;
  }

  .sh-location-grid {
    grid-template-columns: 1fr;
  }

  #sh-hotel-map {
    height: 280px;
  }

  .sh-surroundings {
    max-height: none;
  }

  .sh-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* Archive / grid mobile */
  .ar-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* Single post mobile */
  .sp-featured {
    aspect-ratio: 16 / 9;
  }

  .sp-nav-inner {
    grid-template-columns: 1fr;
  }

  .sp-nav-prev {
    border-right: none;
    border-bottom: 1px solid #E5E5E5;
  }

  .sp-nav-next {
    grid-column: 1;
    text-align: left;
  }

  /* Search form mobile */
  .sr-form {
    flex-direction: column;
  }

  /* Footer mobile */
  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: var(--wp--preset--spacing--40);
  }

  .site-footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hl-hotels-grid {
    grid-template-columns: 1fr;
  }

  .sh-related-grid {
    grid-template-columns: 1fr;
  }

  .sh-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .sh-btn-book,
  .sh-btn-call {
    width: 100%;
    justify-content: center;
  }

  /* About/Contact 480px */
  .au-values-grid {
    grid-template-columns: 1fr;
  }

  .cu-cards {
    flex-direction: column;
  }

  .cu-card {
    min-width: auto;
  }

  .hp-hotel-grid {
    grid-template-columns: 1fr;
  }
}
