/* ARN Hotels & Resorts static website styles */
:root {
  --navy: #0d1b2a;
  --navy-soft: #18304a;
  --gold: #c7a35a;
  --gold-dark: #9f7a35;
  --cream: #fbf6ec;
  --paper: #ffffff;
  --soft-grey: #f4f6f8;
  --text: #1f2937;
  --muted: #667085;
  --line: #e7dfd1;
  --success: #0f7a4f;
  --danger: #b42318;
  --shadow: 0 18px 45px rgba(13, 27, 42, 0.12);
  --radius: 8px;
  --header-height: 92px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--text);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

ul {
  list-style: none;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1eadf;
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
}

::selection {
  background: var(--gold);
  color: var(--navy);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

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

.narrow {
  max-width: 860px;
}

.section-head {
  max-width: 740px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head h2,
.section-copy h2,
.event-copy h2,
.newsletter-wrap h2,
.cta-panel h2,
.enquiry-form h2,
.contact-side h2,
.detail-block h2,
.filter-title h2,
.listing-toolbar h2 {
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3rem, 3rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-head p,
.section-copy p,
.event-copy p,
.cta-panel p,
.contact-side p {
  color: var(--muted);
}

.eyebrow {
  color: var(--gold-dark);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 4px;
  display: inline-flex;
  font-weight: 700;
  gap: 9px;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn:hover,
.btn:focus-visible {
  box-shadow: 0 12px 28px rgba(13, 27, 42, 0.15);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: #d7b875;
}

.btn-navy {
  background: var(--navy);
  color: var(--paper);
}

.btn-navy:hover,
.btn-navy:focus-visible {
  background: var(--navy-soft);
}

.btn-light {
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
}

.btn-outline {
  background: var(--paper);
  border-color: var(--line);
  color: var(--navy);
}

.full-width {
  width: 100%;
}

.text-link,
.text-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--gold-dark);
  display: inline-flex;
  font-weight: 700;
  gap: 8px;
}

.text-link:hover,
.text-button:hover {
  color: var(--navy);
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.preloader {
  align-items: center;
  background: var(--cream);
  display: flex;
  inset: 0;
  justify-content: center;
  position: fixed;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 9999;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  align-items: center;
  border: 1px solid var(--gold);
  color: var(--navy);
  display: flex;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  height: 72px;
  justify-content: center;
  position: relative;
  width: 72px;
}

.loader-mark::after {
  animation: spin 1.2s linear infinite;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  content: "";
  inset: -8px;
  position: absolute;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(231, 223, 209, 0.8);
  box-shadow: 0 8px 30px rgba(13, 27, 42, 0.06);
  left: 0;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 1000;
}

.site-header.is-scrolled {
  backdrop-filter: blur(14px);
}

.nav-wrap {
  align-items: center;
  display: flex;
  gap: 28px;
  min-height: var(--header-height);
}

.brand {
  align-items: center;
  color: var(--navy);
  display: inline-flex;
  flex: 0 0 auto;
  gap: 12px;
  height: 76px;
  overflow: hidden;
  width: 118px;
}

.brand-logo {
  flex: 0 0 auto;
  height: auto;
  width: 118px;
}

.brand-mark {
  align-items: center;
  background: var(--navy);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: inline-flex;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  height: 44px;
  justify-content: center;
  width: 50px;
}

.brand-text {
  display: grid;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.brand-text small {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 22px;
  margin-left: auto;
}

.site-nav a {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
}

.site-nav a::after {
  background: var(--gold);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  width: 100%;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.nav-book {
  min-height: 42px;
  padding: 10px 18px;
}

.nav-toggle {
  background: var(--navy);
  border: 0;
  display: none;
  height: 42px;
  margin-left: auto;
  padding: 10px;
  width: 46px;
}

.nav-toggle span {
  background: var(--paper);
  display: block;
  height: 2px;
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

.hero,
.page-hero {
  background-position: center;
  background-size: cover;
  min-height: calc(100vh - var(--header-height));
  position: relative;
}

.home-hero {
  background-image: url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1800&q=82");
  overflow: hidden;
}

.hero-bg-slider,
.hero-bg-slide {
  inset: 0;
  position: absolute;
}

.hero-bg-slider {
  z-index: 0;
}

.hero-bg-slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.15s ease, transform 6.8s ease;
}

.hero-bg-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hotels-hero {
  background-image: url("https://images.unsplash.com/photo-1582719508461-905c673771fd?auto=format&fit=crop&w=1800&q=82");
}

.about-hero {
  background-image: url("https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?auto=format&fit=crop&w=1800&q=82");
}

.contact-hero {
  background-image: url("https://images.unsplash.com/photo-1563911302283-d2bc129e7570?auto=format&fit=crop&w=1800&q=82");
}

.hero-shade {
  background: linear-gradient(90deg, rgba(13, 27, 42, 0.82), rgba(13, 27, 42, 0.44), rgba(13, 27, 42, 0.14));
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-inner {
  align-items: end;
  display: grid;
  gap: 34px;
  min-height: calc(100vh - var(--header-height));
  padding: 92px 0 56px;
  position: relative;
  z-index: 2;
}

.hero-copy {
  color: var(--paper);
  max-width: 760px;
}

.hero-copy .eyebrow,
.page-hero-copy .eyebrow {
  color: var(--gold);
}

.hero-copy h1,
.page-hero-copy h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 4.9rem, 5.4rem);
  line-height: 1.03;
  margin-bottom: 22px;
  max-width: 100%;
  overflow-wrap: break-word;
}

.hero-copy p,
.page-hero-copy p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hotel-search {
  align-items: end;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  grid-template-columns: 1.4fr repeat(3, 1fr) auto;
  padding: 18px;
}

.search-field label,
.form-field label,
.filter-group label,
.filter-label {
  color: var(--navy);
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 7px;
}

input,
select,
textarea {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  min-height: 46px;
  outline: none;
  padding: 11px 13px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199, 163, 90, 0.18);
}

.search-btn {
  min-height: 46px;
}

.split-grid {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

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

.stat-card,
.feature-card,
.value-card,
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(13, 27, 42, 0.07);
  padding: 28px;
}

.stat-card i,
.feature-card i,
.facility-item i,
.value-card i,
.contact-card i {
  color: var(--gold-dark);
  font-size: 1.7rem;
  margin-bottom: 16px;
}

.stat-card strong {
  color: var(--navy);
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.45rem;
  line-height: 1;
}

.stat-card span {
  color: var(--muted);
  font-weight: 600;
}

.hotel-grid,
.feature-grid,
.category-grid,
.offer-grid,
.destination-grid,
.team-grid,
.contact-card-grid {
  display: grid;
  gap: 24px;
}

.hotel-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid,
.offer-grid,
.destination-grid,
.contact-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.hotel-card,
.offer-card,
.destination-card,
.category-card,
.team-card,
.room-card,
.testimonial-card,
.gallery-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(13, 27, 42, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hotel-card:hover,
.offer-card:hover,
.destination-card:hover,
.category-card:hover,
.team-card:hover {
  border-color: rgba(199, 163, 90, 0.7);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.hotel-card-image,
.offer-card-image,
.destination-card-image,
.team-card img {
  display: block;
  height: 230px;
  overflow: hidden;
  position: relative;
}

.hotel-card-image img,
.offer-card-image img,
.destination-card-image img,
.gallery-item img,
.team-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.hotel-card:hover .hotel-card-image img,
.offer-card:hover .offer-card-image img,
.destination-card:hover .destination-card-image img,
.gallery-item:hover img {
  transform: scale(1.06);
}

.hotel-image-label {
  background: linear-gradient(180deg, rgba(13, 27, 42, 0), rgba(13, 27, 42, 0.88));
  bottom: 0;
  color: var(--paper);
  display: grid;
  gap: 3px;
  left: 0;
  padding: 46px 18px 16px;
  position: absolute;
  right: 0;
  z-index: 1;
}

.hotel-image-label strong,
.hotel-image-label small {
  display: block;
  overflow-wrap: anywhere;
}

.hotel-image-label strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.15;
}

.hotel-image-label small {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 700;
}

.hotel-card-body,
.offer-card-body,
.destination-card-body,
.team-card {
  padding: 22px;
}

.hotel-meta,
.rating-row,
.price-row,
.card-actions,
.facility-icons,
.detail-meta,
.event-tags,
.legal-links,
.footer-bottom-wrap,
.toolbar-actions,
.view-toggle,
.booking-card-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hotel-card h3,
.offer-card h3,
.destination-card h3,
.feature-card h3,
.category-card h3,
.team-card h3,
.room-card h3,
.contact-card h2 {
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.3;
  margin-bottom: 8px;
}

.hotel-meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.hotel-card p,
.offer-card p,
.destination-card p,
.feature-card p,
.category-card p,
.team-card p,
.room-card p,
.review-card p,
.policy-card p {
  color: var(--muted);
}

.rating-stars {
  color: var(--gold-dark);
  font-size: 0.9rem;
}

.price-row {
  justify-content: space-between;
  margin: 16px 0;
}

.price-row strong {
  color: var(--navy);
  font-size: 1.15rem;
}

.facility-icons {
  margin-bottom: 18px;
}

.facility-icons span {
  align-items: center;
  background: var(--cream);
  color: var(--navy);
  display: inline-flex;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 9px;
}

.card-actions {
  gap: 10px;
}

.card-actions .btn {
  flex: 1 1 130px;
  min-height: 42px;
  padding: 10px 14px;
}

.feature-card {
  min-height: 228px;
}

.category-card {
  background-position: center;
  background-size: cover;
  color: var(--paper);
  min-height: 210px;
  padding: 22px;
  position: relative;
}

.category-card::before,
.destination-card-image::after {
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.16), rgba(13, 27, 42, 0.72));
  content: "";
  inset: 0;
  position: absolute;
}

.category-card h3,
.category-card p {
  color: var(--paper);
  position: relative;
  z-index: 1;
}

.category-card h3 {
  margin-top: 112px;
}

.facility-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.facility-item {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  justify-items: center;
  min-height: 132px;
  padding: 18px;
  text-align: center;
}

.facility-item span {
  color: var(--navy);
  font-weight: 700;
}

.destination-card-image {
  height: 260px;
  position: relative;
}

.destination-card-body {
  margin-top: -88px;
  position: relative;
  z-index: 1;
}

.destination-card h3,
.destination-card p {
  color: var(--paper);
}

.event-panel {
  align-items: center;
  background: var(--navy);
  border-radius: var(--radius);
  color: var(--paper);
  display: grid;
  gap: 42px;
  grid-template-columns: 0.95fr 1.05fr;
  overflow: hidden;
}

.event-image {
  height: 100%;
  min-height: 520px;
}

.event-image img {
  height: 100%;
  object-fit: cover;
}

.event-copy {
  padding: 54px 54px 54px 12px;
}

.event-copy h2 {
  color: var(--paper);
}

.event-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.event-tags {
  margin: 22px 0 28px;
}

.event-tags span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--paper);
  font-size: 0.85rem;
  padding: 8px 10px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}

.filter-buttons button {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--navy);
  font-weight: 700;
  min-height: 42px;
  padding: 9px 14px;
}

.filter-buttons button.active,
.filter-buttons button:hover {
  background: var(--navy);
  color: var(--paper);
}

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

.gallery-item {
  border: 0;
  height: 250px;
  position: relative;
}

.gallery-item button {
  background: transparent;
  border: 0;
  color: var(--paper);
  height: 100%;
  position: relative;
  width: 100%;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
}

.gallery-item span {
  background: rgba(13, 27, 42, 0.74);
  bottom: 12px;
  font-weight: 700;
  left: 12px;
  padding: 7px 10px;
  position: absolute;
}

.testimonial-slider {
  margin: 0 auto;
  max-width: 850px;
  position: relative;
}

.testimonial-card {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: 110px 1fr;
  padding: 34px;
}

.testimonial-card img {
  border: 4px solid var(--gold);
  height: 108px;
  object-fit: cover;
  width: 108px;
}

.testimonial-card blockquote {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 10px 0 14px;
}

.testimonial-controls {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}

.testimonial-controls button,
.slider-button {
  align-items: center;
  background: var(--navy);
  border: 0;
  color: var(--paper);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  transition: background 0.25s ease;
  width: 42px;
}

.testimonial-controls button:hover,
.slider-button:hover {
  background: var(--gold-dark);
}

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

.social-grid a {
  display: block;
  height: 190px;
  overflow: hidden;
  position: relative;
}

.social-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.social-grid a:hover img {
  transform: scale(1.07);
}

.newsletter-band {
  background: var(--navy);
  color: var(--paper);
}

.newsletter-wrap {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr minmax(320px, 500px);
}

.newsletter-wrap h2 {
  color: var(--paper);
  margin-bottom: 0;
}

.newsletter-form {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto;
  position: relative;
}

.newsletter-form input {
  border-color: rgba(255, 255, 255, 0.22);
}

.form-note {
  bottom: -28px;
  color: var(--paper);
  font-size: 0.82rem;
  left: 0;
  position: absolute;
}

.quick-booking-section .split-grid {
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.contact-list a {
  align-items: center;
  color: var(--navy);
  display: inline-flex;
  font-weight: 700;
  gap: 10px;
}

.enquiry-form,
.filter-panel,
.sticky-booking-card,
.contact-side,
.detail-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(13, 27, 42, 0.08);
  padding: 28px;
}

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

.form-field {
  margin-bottom: 16px;
}

.field-message {
  color: var(--danger);
  display: block;
  font-size: 0.78rem;
  min-height: 18px;
  padding-top: 4px;
}

.form-field.invalid input,
.form-field.invalid select,
.form-field.invalid textarea {
  border-color: var(--danger);
}

.form-success {
  color: var(--success);
  font-weight: 700;
  margin-top: 12px;
}

.page-hero {
  min-height: 430px;
}

.page-hero-copy {
  color: var(--paper);
  padding: 130px 0 90px;
  position: relative;
  z-index: 1;
}

.page-hero-copy h1 {
  max-width: 850px;
}

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

.listing-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: 300px 1fr;
}

.filter-panel {
  position: sticky;
  top: calc(var(--header-height) + 22px);
}

.filter-title {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.filter-title h2 {
  font-size: 1.6rem;
  margin: 0;
}

.filter-group {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.filter-group:first-of-type {
  border-top: 0;
}

.checkbox-stack {
  display: grid;
  gap: 10px;
}

.checkbox-stack label {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.92rem;
  gap: 8px;
  margin: 0;
}

.checkbox-stack input {
  min-height: auto;
  width: auto;
}

.listing-toolbar {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 20px;
}

.listing-toolbar h2 {
  font-size: 1.55rem;
  margin: 0;
}

.toolbar-actions select {
  min-width: 190px;
}

.view-toggle {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 4px;
}

.view-toggle button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--navy);
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 42px;
}

.view-toggle button.active {
  background: var(--navy);
  color: var(--paper);
}

.hotel-results.grid-view {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hotel-results.list-view {
  display: grid;
  gap: 20px;
}

.hotel-results.list-view .hotel-card {
  display: grid;
  grid-template-columns: 320px 1fr;
}

.hotel-results.list-view .hotel-card-image {
  height: 100%;
  min-height: 260px;
}

.empty-state {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 28px;
  text-align: center;
}

.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
}

.pagination button {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 700;
  height: 42px;
  width: 42px;
}

.pagination button.active,
.pagination button:hover {
  background: var(--navy);
  color: var(--paper);
}

.detail-top {
  background: var(--cream);
  padding: 44px 0;
}

.detail-loading {
  padding: 50px 0;
}

.detail-hero-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.detail-gallery {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.detail-gallery-main {
  height: 520px;
  position: relative;
}

.detail-gallery-main img {
  height: 100%;
  object-fit: cover;
}

.slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.slider-prev {
  left: 14px;
}

.slider-next {
  right: 14px;
}

.detail-thumbs {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
  padding: 10px;
}

.detail-thumbs button {
  border: 2px solid transparent;
  height: 92px;
  overflow: hidden;
}

.detail-thumbs button.active {
  border-color: var(--gold);
}

.detail-thumbs img {
  height: 100%;
  object-fit: cover;
}

.detail-summary {
  align-self: center;
}

.detail-summary h1 {
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 4rem, 4rem);
  line-height: 1.1;
  margin: 10px 0 16px;
}

.detail-meta {
  color: var(--muted);
  margin-bottom: 18px;
}

.detail-price {
  align-items: baseline;
  color: var(--navy);
  display: flex;
  gap: 8px;
  margin: 24px 0;
}

.detail-price strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
}

.detail-content-section {
  background: var(--soft-grey);
}

.detail-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 360px;
}

.detail-main {
  display: grid;
  gap: 24px;
}

.detail-block h2 {
  font-size: 2rem;
}

.room-grid,
.amenity-grid,
.policy-grid,
.attraction-list,
.review-list,
.compact-grid {
  display: grid;
  gap: 18px;
}

.room-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.room-card {
  padding: 20px;
}

.room-card strong {
  color: var(--navy);
  display: block;
  margin-top: 10px;
}

.amenity-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.amenity-item,
.policy-card,
.attraction-item,
.review-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 16px;
}

.amenity-item {
  align-items: center;
  color: var(--navy);
  display: flex;
  font-weight: 700;
  gap: 10px;
}

.amenity-item i {
  color: var(--gold-dark);
}

.policy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.map-placeholder {
  align-items: center;
  background: linear-gradient(135deg, #e8edf2, #f8f2e8);
  border: 1px solid var(--line);
  color: var(--navy);
  display: grid;
  font-weight: 700;
  gap: 8px;
  justify-items: center;
  min-height: 260px;
  text-align: center;
}

.map-placeholder i {
  color: var(--gold-dark);
  font-size: 2.6rem;
}

.map-placeholder.map-embed {
  background: var(--paper);
  display: block;
  overflow: hidden;
}

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

.tall-map {
  min-height: 340px;
}

.sticky-booking-card {
  position: sticky;
  top: calc(var(--header-height) + 22px);
}

.booking-summary {
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
  padding-bottom: 18px;
}

.booking-summary h2 {
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1.2;
}

.booking-card-actions {
  display: grid;
  margin-top: 16px;
}

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

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  align-items: center;
  background: var(--paper);
  border: 0;
  color: var(--navy);
  display: flex;
  font-weight: 800;
  justify-content: space-between;
  min-height: 58px;
  padding: 16px 18px;
  text-align: left;
  width: 100%;
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.image-stack {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 0.84fr;
}

.image-stack img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 470px;
  object-fit: cover;
}

.image-stack img:last-child {
  margin-top: 74px;
}

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

.value-card {
  min-height: 260px;
}

.team-card {
  text-align: center;
}

.team-card img {
  height: 300px;
  margin: -22px -22px 20px;
  max-width: none;
  width: calc(100% + 44px);
}

.stats-band {
  background: var(--navy);
  color: var(--paper);
  padding: 58px 0;
}

.stats-row {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  text-align: center;
}

.stats-row strong {
  color: var(--gold);
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.7rem;
}

.location-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.location-pill-grid a {
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 700;
  padding: 11px 18px;
}

.cta-section {
  background: var(--cream);
}

.cta-panel {
  background: var(--navy);
  border-radius: var(--radius);
  color: var(--paper);
  padding: 54px;
  text-align: center;
}

.cta-panel h2,
.cta-panel p {
  color: var(--paper);
}

.cta-panel .hero-actions {
  justify-content: center;
}

.contact-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 390px;
}

.contact-card {
  text-align: center;
}

.contact-card a {
  color: var(--gold-dark);
  font-weight: 700;
}

.contact-side {
  display: grid;
  gap: 18px;
}

.whatsapp-panel {
  background: var(--navy);
  color: var(--paper);
  padding: 24px;
}

.whatsapp-panel h2,
.whatsapp-panel p {
  color: var(--paper);
}

.social-large {
  justify-content: center;
}

.site-footer {
  background: #071422;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  gap: 38px;
  grid-template-columns: 1.25fr 0.8fr 1fr 1.2fr;
  padding: 70px 0 48px;
}

.brand-footer .brand-mark {
  background: transparent;
}

.brand-footer {
  background: var(--paper);
  border: 1px solid rgba(199, 163, 90, 0.45);
  height: 124px;
  padding: 8px;
  width: 190px;
}

.brand-footer .footer-logo {
  width: 172px;
}

.brand-footer,
.site-footer h3 {
  color: var(--paper);
}

.site-footer h3 {
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.footer-brand p {
  margin: 18px 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--paper);
  display: inline-flex;
  height: 40px;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease;
  width: 40px;
}

.social-links a:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.footer-contact li {
  display: flex;
  gap: 10px;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 5px;
}

.footer-newsletter {
  grid-template-columns: 1fr 48px;
  margin-top: 18px;
}

.footer-newsletter button {
  background: var(--gold);
  border: 0;
  color: var(--navy);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
}

.footer-bottom-wrap {
  justify-content: space-between;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.78);
}

.legal-links a:hover {
  color: var(--gold);
}

.floating-actions {
  bottom: 22px;
  display: grid;
  gap: 10px;
  position: fixed;
  right: 22px;
  z-index: 900;
}

.float-btn,
.back-to-top {
  align-items: center;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 25px rgba(13, 27, 42, 0.22);
  color: var(--paper);
  display: inline-flex;
  height: 48px;
  justify-content: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
  width: 48px;
}

.float-btn:hover,
.back-to-top:hover {
  transform: translateY(-3px);
}

.whatsapp-float {
  background: #25d366;
}

.call-float {
  background: var(--gold-dark);
  display: none;
}

.back-to-top {
  background: var(--navy);
  opacity: 0;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.modal,
.lightbox {
  align-items: center;
  background: rgba(7, 20, 34, 0.74);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 22px;
  position: fixed;
  z-index: 2000;
}

.modal.active,
.lightbox.active {
  display: flex;
}

.modal-dialog,
.lightbox-dialog {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-height: calc(100vh - 44px);
  max-width: 760px;
  overflow-y: auto;
  position: relative;
  width: 100%;
}

.modal-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 22px 24px;
}

.modal-header h2 {
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
}

.modal-close,
.lightbox-close {
  align-items: center;
  background: var(--navy);
  border: 0;
  color: var(--paper);
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.modal-body {
  padding: 24px;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.toast {
  background: var(--navy);
  border-left: 4px solid var(--gold);
  bottom: 22px;
  box-shadow: var(--shadow);
  color: var(--paper);
  opacity: 0;
  padding: 14px 18px;
  pointer-events: none;
  position: fixed;
  right: 86px;
  transform: translateY(14px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 2300;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.lightbox-dialog {
  background: transparent;
  max-width: 980px;
  overflow: visible;
}

.lightbox-dialog img {
  border: 8px solid var(--paper);
  max-height: 82vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  right: -16px;
  top: -16px;
}

.cookie-consent {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  bottom: 22px;
  box-shadow: var(--shadow);
  display: none;
  gap: 18px;
  left: 22px;
  max-width: min(520px, calc(100% - 44px));
  padding: 18px;
  position: fixed;
  z-index: 2100;
}

.cookie-consent.visible {
  display: flex;
}

.cookie-consent p {
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .hotel-grid,
  .feature-grid,
  .offer-grid,
  .destination-grid,
  .contact-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-grid,
  .facility-grid,
  .social-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hotel-search {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-btn {
    grid-column: span 2;
  }

  .detail-layout,
  .contact-layout,
  .listing-layout,
  .detail-hero-grid {
    grid-template-columns: 1fr;
  }

  .filter-panel,
  .sticky-booking-card {
    position: static;
  }

  .hotel-results.grid-view {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 88px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: grid;
    gap: 0;
    left: 0;
    max-height: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 100%;
    transition: max-height 0.3s ease;
  }

  .site-nav.is-open {
    max-height: 520px;
  }

  .site-nav a,
  .site-nav .nav-book {
    border-bottom: 1px solid var(--line);
    margin: 0;
    padding: 16px 20px;
    width: 100%;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-book {
    border-radius: 0;
    justify-content: flex-start;
  }

  .hero-inner {
    align-items: center;
    padding-top: 70px;
  }

  .split-grid,
  .event-panel,
  .newsletter-wrap {
    grid-template-columns: 1fr;
  }

  .event-copy {
    padding: 34px;
  }

  .event-image {
    min-height: 360px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-stack img {
    height: 360px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 66px 0;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: 3rem;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .home-hero {
    min-height: 760px;
  }

  .hotel-search,
  .form-grid,
  .stats-grid,
  .hotel-grid,
  .feature-grid,
  .offer-grid,
  .destination-grid,
  .contact-card-grid,
  .hotel-results.grid-view,
  .hotel-results.list-view .hotel-card,
  .room-grid,
  .amenity-grid,
  .policy-grid,
  .three-grid,
  .team-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .search-btn {
    grid-column: auto;
  }

  .category-grid,
  .facility-grid,
  .gallery-grid,
  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .listing-toolbar,
  .footer-bottom-wrap,
  .cookie-consent {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-consent {
    left: 14px;
    max-width: none;
    right: 14px;
  }

  .toolbar-actions,
  .toolbar-actions select {
    width: 100%;
  }

  .view-toggle {
    justify-content: center;
  }

  .hotel-results.list-view .hotel-card-image {
    min-height: 230px;
  }

  .detail-gallery-main {
    height: 360px;
  }

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

  .testimonial-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testimonial-card img {
    margin: 0 auto;
  }

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

  .form-note {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .floating-actions {
    bottom: 16px;
    right: 16px;
  }

  .call-float {
    display: inline-flex;
  }

  .toast {
    left: 16px;
    right: 16px;
  }
}

@media (max-width: 520px) {
  .brand {
    height: 72px;
    width: 108px;
  }

  .brand-logo {
    width: 108px;
  }

  .brand-text {
    font-size: 0.9rem;
    max-width: 145px;
  }

  .brand-mark {
    height: 40px;
    width: 46px;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: 2.2rem;
    line-height: 1.08;
  }

  .hero-actions .btn,
  .modal-actions .btn {
    width: 100%;
  }

  .category-grid,
  .facility-grid,
  .gallery-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .social-grid a {
    height: 240px;
  }

  .event-copy,
  .cta-panel,
  .enquiry-form,
  .filter-panel,
  .sticky-booking-card,
  .detail-block {
    padding: 22px;
  }

  .modal {
    padding: 10px;
  }
}

@media (max-width: 420px) {
  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: 2rem;
    max-width: 340px;
  }

  .hero-copy p,
  .page-hero-copy p {
    font-size: 0.98rem;
  }
}
