:root {
  --ah-ink: #161c19;
  --ah-muted: #5c6761;
  --ah-bg: #f6f7f5;
  --ah-surface: #ffffff;
  --ah-green: #12382f;
  --ah-green-2: #1a4a3e;
  --ah-gold: #c8a96e;
  --ah-line: rgba(18, 56, 47, 0.12);
  --ah-serif: "Cormorant Garamond", Georgia, serif;
  --ah-sans: "Outfit", Helvetica Neue, sans-serif;
  --ah-max: 1180px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ah-ink);
  background: var(--ah-bg);
  font-family: var(--ah-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.ah-container {
  width: min(100% - 2rem, var(--ah-max));
  margin-inline: auto;
}

/* Header */
.ah-topbar {
  background: var(--ah-green);
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.ah-topbar .ah-container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  flex-wrap: wrap;
  align-items: center;
}
.ah-topbar-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.ah-lang {
  margin: 0;
}
.ah-lang select {
  appearance: none;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 3px;
  padding: 0.28rem 1.6rem 0.28rem 0.55rem;
  font-size: 12px;
  letter-spacing: 0.02em;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, #c8a96e 50%), linear-gradient(135deg, #c8a96e 50%, transparent 50%);
  background-position: calc(100% - 12px) calc(50% - 2px), calc(100% - 8px) calc(50% - 2px);
  background-size: 4px 4px, 4px 4px;
  background-repeat: no-repeat;
}
.ah-lang select option { color: #12382f; }
.ah-header-tools {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.ah-lang--bar { display: none; }
.ah-lang--bar select {
  color: var(--ah-green);
  background-color: #fff;
  border-color: var(--ah-line);
  font-size: 14px;
  padding: 0.45rem 1.75rem 0.45rem 0.65rem;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
body.ah-rtl { direction: rtl; }
body.ah-rtl .ah-header-inner,
body.ah-rtl .ah-topbar .ah-container,
body.ah-rtl .ah-hero-actions,
body.ah-rtl .ah-feature,
body.ah-rtl .ah-footer-bottom {
  direction: rtl;
}

.ah-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 247, 245, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ah-line);
}
.ah-header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
  min-height: 78px;
}
.ah-brand {
  font-family: var(--ah-serif);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ah-green);
  line-height: 1;
}
.ah-brand span { color: var(--ah-gold); }
.ah-brand-logo img {
  max-height: 48px;
  width: auto;
}

.ah-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ah-nav-wrap {
  margin-left: auto;
}
.ah-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ah-muted);
}
.ah-nav a:hover,
.ah-nav .current-menu-item > a {
  color: var(--ah-green);
}
.ah-header .ah-nav-cta a,
.ah-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--ah-gold);
  color: var(--ah-green) !important;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 1.35rem;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ah-header .ah-nav-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.75rem 1.1rem;
  border: 1px solid var(--ah-gold);
  border-radius: 3px;
  color: var(--ah-green) !important;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.ah-header .ah-nav-menu a:hover {
  background: rgba(200, 169, 110, 0.12);
  border-color: var(--ah-gold);
  color: var(--ah-green) !important;
}
.ah-header .ah-nav-cta a:hover,
.ah-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(200, 169, 110, 0.28);
}
.ah-btn-ghost {
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.45);
}
.ah-btn-ghost:hover {
  border-color: var(--ah-gold);
  color: var(--ah-gold) !important;
  box-shadow: none;
}

.ah-menu-toggle {
  display: none;
  border: 1px solid var(--ah-line);
  background: var(--ah-surface);
  width: 44px;
  height: 44px;
  border-radius: 4px;
  cursor: pointer;
}
.ah-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ah-green);
}

/* Hero */
.ah-hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.ah-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(10, 24, 20, 0.25) 0%, rgba(10, 24, 20, 0.72) 100%),
    var(--ah-hero-image) center/cover no-repeat;
}
.ah-hero-content {
  width: min(100% - 2rem, var(--ah-max));
  margin: 0 auto 4.5rem;
  animation: ah-rise 0.9s ease both;
}
.ah-hero-brand {
  font-family: var(--ah-serif);
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  font-weight: 600;
  line-height: 0.95;
  margin: 0 0 0.85rem;
  letter-spacing: -0.01em;
}
.ah-hero-brand em {
  font-style: italic;
  color: var(--ah-gold);
}
.ah-hero p {
  max-width: 34rem;
  margin: 0 0 1.6rem;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
}
.ah-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@keyframes ah-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sections */
.ah-section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.ah-section-head {
  max-width: 40rem;
  margin-bottom: 2.4rem;
}
.ah-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ah-gold);
  margin-bottom: 0.65rem;
}
.ah-section h2 {
  font-family: var(--ah-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 0.75rem;
  color: var(--ah-green);
}
.ah-section-head p {
  margin: 0;
  color: var(--ah-muted);
}

.ah-rooms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.ah-room {
  background: var(--ah-surface);
  border: 1px solid var(--ah-line);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ah-room:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(18, 56, 47, 0.08);
}
.ah-room img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.ah-room-body {
  padding: 1.25rem 1.2rem 1.4rem;
}
.ah-room-body h3 {
  font-family: var(--ah-serif);
  font-size: 1.55rem;
  margin: 0 0 0.35rem;
  color: var(--ah-green);
}
.ah-room-meta {
  font-size: 0.85rem;
  color: var(--ah-gold);
  font-weight: 500;
  margin-bottom: 0.55rem;
}
.ah-room-body p {
  margin: 0;
  color: var(--ah-muted);
  font-size: 0.95rem;
}

/* —— Rooms page (Cappa-inspired list) —— */
.ah-rooms-hero {
  position: relative;
  min-height: clamp(280px, 42vw, 420px);
  display: grid;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(10, 22, 18, 0.35), rgba(10, 22, 18, 0.72)),
    var(--ah-rooms-hero) center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.ah-rooms-hero-shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(200, 169, 110, 0.18), transparent 55%);
  pointer-events: none;
}
.ah-rooms-hero-inner {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}
.ah-rooms-hero-kicker {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ah-gold);
  margin-bottom: 0.75rem;
}
.ah-rooms-hero h1 {
  font-family: var(--ah-serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  margin: 0 0 0.65rem;
  line-height: 1.05;
}
.ah-rooms-hero p {
  margin: 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.ah-rooms-list-section {
  background: #fff;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.ah-rooms-list {
  display: grid;
  gap: clamp(3.5rem, 8vw, 5.5rem);
}
.ah-room-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 0;
  position: relative;
}
.ah-room-row.is-flip {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
}
.ah-room-row-media {
  position: relative;
  z-index: 1;
  min-height: clamp(280px, 36vw, 440px);
  overflow: hidden;
}
.ah-room-row.is-flip .ah-room-row-media {
  order: 2;
}
.ah-room-row.is-flip .ah-room-row-panel {
  order: 1;
}
.ah-room-row-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(280px, 36vw, 440px);
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.ah-room-row:hover .ah-room-row-media img {
  transform: scale(1.04);
}
.ah-room-row-panel {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  margin-left: -12%;
  box-shadow: 0 24px 60px rgba(18, 56, 47, 0.1);
  border: 1px solid rgba(18, 56, 47, 0.06);
}
.ah-room-row.is-flip .ah-room-row-panel {
  margin-left: 0;
  margin-right: -12%;
}
.ah-room-row-price {
  font-family: var(--ah-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ah-gold);
  margin-bottom: 0.55rem;
}
.ah-room-row-price span {
  font-weight: 500;
  opacity: 0.9;
}
.ah-room-row-panel h2 {
  font-family: var(--ah-serif);
  font-weight: 500;
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  color: var(--ah-green);
  margin: 0 0 0.4rem;
  line-height: 1.15;
}
.ah-room-row-meta {
  color: var(--ah-gold);
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}
.ah-room-row-panel p {
  margin: 0 0 1.25rem;
  color: var(--ah-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}
.ah-room-amenities {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.25rem;
}
.ah-room-amenities li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--ah-ink);
}
.ah-room-amenity-icon {
  display: inline-flex;
  color: var(--ah-gold);
  flex-shrink: 0;
}
.ah-room-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.ah-btn-ghost-dark {
  background: transparent;
  color: var(--ah-green);
  border: 1px solid rgba(18, 56, 47, 0.28);
}
.ah-btn-ghost-dark:hover {
  border-color: var(--ah-green);
  background: rgba(18, 56, 47, 0.04);
}

@media (max-width: 900px) {
  .ah-room-row,
  .ah-room-row.is-flip {
    grid-template-columns: 1fr;
  }
  .ah-room-row.is-flip .ah-room-row-media,
  .ah-room-row.is-flip .ah-room-row-panel {
    order: unset;
  }
  .ah-room-row-panel,
  .ah-room-row.is-flip .ah-room-row-panel {
    margin: -2.5rem 1rem 0;
  }
  .ah-room-row-media img {
    min-height: 240px;
  }
}
@media (max-width: 560px) {
  .ah-room-amenities {
    grid-template-columns: 1fr;
  }
  .ah-room-row-panel,
  .ah-room-row.is-flip .ah-room-row-panel {
    margin: -1.75rem 0.75rem 0;
  }
}

.ah-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}
.ah-split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
}
.ah-features {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.ah-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}
.ah-feature i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(200, 169, 110, 0.18);
  color: var(--ah-green);
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
}
.ah-feature strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--ah-green);
}
.ah-feature span {
  color: var(--ah-muted);
  font-size: 0.92rem;
}

.ah-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
.ah-gallery a {
  overflow: hidden;
  display: block;
}
.ah-gallery img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.ah-gallery a:hover img { transform: scale(1.04); }

.ah-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(8, 16, 14, 0.88);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.ah-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.ah-lightbox[hidden] { display: none; }
.ah-lightbox.is-open[hidden] { display: flex; }
.ah-lightbox-stage {
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.ah-lightbox-stage img {
  display: block;
  pointer-events: auto;
  max-width: min(1120px, calc(100vw - 8rem));
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 0.35rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  transform: scale(0.92) translateY(12px);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}
.ah-lightbox.is-open .ah-lightbox-stage img {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.ah-lightbox-close,
.ah-lightbox-nav {
  position: absolute;
  z-index: 2;
  border: 0;
  background: rgba(255,255,255,0.12);
  color: #fff;
  cursor: pointer;
  line-height: 1;
}
.ah-lightbox-close {
  top: 1rem;
  right: 1.1rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  font-size: 1.6rem;
}
.ah-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  font-size: 1.8rem;
}
.ah-lightbox-prev { left: 0.85rem; }
.ah-lightbox-next { right: 0.85rem; }
.ah-lightbox-close:hover,
.ah-lightbox-nav:hover { background: var(--ah-gold); color: #12263a; }
@media (max-width: 720px) {
  .ah-lightbox-stage img { max-width: calc(100vw - 1.5rem); }
  .ah-lightbox-nav { width: 2.3rem; height: 2.3rem; }
}

.ah-video {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(72vh, 38rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0c1f1b;
}
.ah-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ah-video-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ah-video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 31, 27, 0.18) 0%, rgba(12, 31, 27, 0.32) 100%);
}
.ah-video-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 4.5rem 1rem;
}
.ah-video-play {
  position: relative;
  width: 13.5rem;
  height: 13.5rem;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
}
.ah-video-orbit {
  position: absolute;
  inset: 0;
  animation: ah-orbit 22s linear infinite;
}
.ah-video-orbit svg {
  width: 100%;
  height: 100%;
  fill: #fff;
  overflow: visible;
}
.ah-video-orbit text {
  font-family: var(--ah-sans, 'Outfit', sans-serif);
  font-size: 38px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.ah-video-btn {
  position: relative;
  z-index: 1;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.55);
  display: grid;
  place-items: center;
  background: rgba(18, 56, 47, 0.28);
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.ah-video-btn i {
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #fff;
}
.ah-video-play:hover .ah-video-btn {
  transform: scale(1.06);
  background: var(--ah-gold);
  border-color: var(--ah-gold);
}
.ah-video-watermark {
  position: absolute;
  left: -0.15em;
  bottom: -0.22em;
  z-index: 1;
  font-family: var(--ah-sans, 'Outfit', sans-serif);
  font-weight: 700;
  font-size: clamp(5.5rem, 18vw, 14rem);
  line-height: 0.78;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.16);
  pointer-events: none;
  text-transform: lowercase;
  white-space: nowrap;
}
@keyframes ah-orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
.ah-video-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(8, 16, 14, 0.92);
  display: grid;
  place-items: center;
  padding: 1.5rem;
}
.ah-video-modal[hidden] { display: none; }
.ah-video-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.ah-video-modal-frame {
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
}
.ah-video-modal-frame iframe,
.ah-video-modal-frame video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 720px) {
  .ah-video { min-height: 22rem; }
  .ah-video-play { width: 10.5rem; height: 10.5rem; }
  .ah-video-btn { width: 4.4rem; height: 4.4rem; }
  .ah-video-watermark { font-size: 4.6rem; bottom: -0.08em; }
}

.ah-cta {
  background:
    linear-gradient(135deg, rgba(18, 56, 47, 0.92), rgba(18, 56, 47, 0.78)),
    url("https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: #fff;
  text-align: center;
  padding: clamp(3.5rem, 8vw, 5.5rem) 1rem;
}
.ah-cta h2 {
  font-family: var(--ah-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.75rem;
  color: #fff;
}
.ah-cta p {
  margin: 0 auto 1.5rem;
  max-width: 32rem;
  color: rgba(255,255,255,0.86);
}

/* Page chrome */
.ah-page-hero {
  background: var(--ah-green);
  color: #fff;
  padding: 4.5rem 0 3.2rem;
}
.ah-page-hero h1 {
  font-family: var(--ah-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 0 0 0.5rem;
}
.ah-page-hero p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  max-width: 36rem;
}
.ah-content {
  padding: 3rem 0 4.5rem;
}
.ah-content .ah-prose {
  max-width: 46rem;
}
/* QR / restaurant menu: same width as header + page hero (not prose column) */
.ah-content--menu {
  padding: 0 0 4.5rem;
  background: #faf9f7;
}
.ah-content--menu > .ah-container {
  max-width: none;
  width: min(100% - 2rem, var(--ah-max));
  padding: 0;
}
.ah-content--menu .arevia-qr-local {
  margin: 0;
  width: 100%;
}
.ah-prose p { color: var(--ah-muted); margin-top: 0; }
.ah-prose h2 {
  font-family: var(--ah-serif);
  color: var(--ah-green);
}

.ah-contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}
.ah-card {
  background: var(--ah-surface);
  border: 1px solid var(--ah-line);
  padding: 1.5rem;
}
.ah-card h3 {
  font-family: var(--ah-serif);
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
  color: var(--ah-green);
}
.ah-card p { margin: 0 0 0.55rem; color: var(--ah-muted); }
.ah-form {
  display: grid;
  gap: 0.85rem;
}
.ah-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ah-green);
  font-weight: 600;
}
.ah-form input,
.ah-form textarea {
  width: 100%;
  border: 1px solid var(--ah-line);
  background: #fff;
  padding: 0.85rem 0.9rem;
  border-radius: 3px;
  color: var(--ah-ink);
}
.ah-form textarea { min-height: 140px; resize: vertical; }

.ah-map-block {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  width: 100%;
}
.ah-map-frame {
  /* Full-bleed left → right, compact strip */
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: #e8ebe9;
  aspect-ratio: 21 / 6;
  min-height: 180px;
  max-height: 320px;
}
.ah-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 700px) {
  .ah-map-frame {
    aspect-ratio: 16 / 7;
    min-height: 160px;
    max-height: 240px;
  }
}

.ah-booking-shell {
  background: #0d0d0d;
  padding: 0 0 2rem;
}
.ah-booking-note {
  width: min(100% - 2rem, var(--ah-max));
  margin: 0 auto;
  padding: 1rem 0 0.25rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}

/* Footer */
.ah-footer {
  background: var(--ah-green);
  color: rgba(255,255,255,0.78);
  padding: 3rem 0 1.5rem;
}
.ah-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.ah-footer .ah-brand { color: #fff; margin-bottom: 0.75rem; display: inline-block; }
.ah-footer h4 {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ah-gold);
}
.ah-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.ah-footer a {
  color: rgba(255, 255, 255, 0.88);
}
.ah-footer a:hover {
  color: var(--ah-gold);
}
.ah-footer .ah-nav-cta a,
.ah-footer .ah-nav-menu a {
  display: inline;
  background: none;
  border: 0;
  padding: 0;
  letter-spacing: 0;
  text-transform: none;
  font-size: inherit;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88) !important;
  box-shadow: none;
  transform: none;
}
.ah-footer .ah-nav-cta a:hover,
.ah-footer .ah-nav-menu a:hover {
  color: var(--ah-gold) !important;
  background: none;
  border: 0;
  box-shadow: none;
  transform: none;
}
.ah-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.1rem;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .ah-rooms,
  .ah-gallery,
  .ah-split,
  .ah-contact-grid,
  .ah-footer-grid {
    grid-template-columns: 1fr;
  }
  .ah-menu-toggle { display: inline-block; }
  .ah-topbar .ah-lang { display: none; }
  .ah-lang--bar { display: block; }
  .ah-header-inner { position: relative; }
  .ah-header-tools { margin-left: auto; }
  .ah-nav-wrap {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-left: 0;
    background: #fff;
    border-bottom: 1px solid var(--ah-line);
    padding: 0.75rem 1rem 1rem;
  }
  .ah-nav-wrap.is-open { display: block; }
  .ah-nav {
    flex-direction: column;
    align-items: stretch;
  }
  .ah-header .ah-nav-cta a,
  .ah-header .ah-nav-menu a { width: 100%; }
}
