/* RESET & BASE STYLES ============================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  line-height: 1.5;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Lato', Arial, sans-serif;
  background-color: #181D22;
  color: #F6F3EF;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}

a {
  color: #9A8B6D;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #FFD700;
  outline: none;
}

ul, ol {
  margin: 0 0 16px 24px;
  padding: 0;
}
li {
  margin-bottom: 8px;
  line-height: 1.4;
}

strong {
  font-weight: 700;
}

/* FONT-FACE - fallback for system fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Playfair+Display:wght@600;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #F6F3EF;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.lead {
  font-size: 1.15rem;
  color: #D2CCA8;
  margin-bottom: 20px;
}

p, span, li, .body-text {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #D4D2CA;
  margin-bottom: 12px;
}
.section p:last-child, .section ul:last-child {
  margin-bottom: 0;
}

/* GENERAL UTILS ================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.text-section {
  background: #23272C;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(20,23,26,0.14), 0 1.5px 7px 0px #000a;
  padding: 32px 24px;
  margin: 0 auto 24px auto;
}

/* INDUSTRIAL MODERN SPACING (per requirements) === */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container, .card-grid, .feature-grid, .unique-experiences-grid, .unique-benefits-grid, .values-grid, .suite-amenities-grid, .menu-highlights-grid, .therapy-types-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 24px 0 0 0;
}
.card {
  background: #262D34;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(52,56,58,0.12);
  position: relative;
  padding: 32px 24px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #F6F3EF;
  border-radius: 10px;
  box-shadow: 0 3px 16px rgba(32,34,37,0.12), 0 0.5px 5px #0002;
  margin-bottom: 20px;
  color: #182127;
  transition: transform 0.15s cubic-bezier(.4,0,.2,1), box-shadow 0.15s cubic-bezier(.4,0,.2,1);
}
.testimonial-card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 6px 24px 0 #23272C30;
}
.testimonial-card p {
  color: #222;
  margin-bottom: 8px;
}
.testimonial-card .author {
  color: #9A8B6D;
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #22272A;
  padding: 20px 16px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(20, 23, 26, 0.06);
  flex: 1 1 220px;
  min-width: 220px;
  margin-bottom: 20px;
}

/* NAVIGATION & HEADER ============================= */
header {
  width: 100%;
  background: #0C2238;
  box-shadow: 0 2px 14px 0 #23272C15;
  position: sticky;
  top: 0;
  z-index: 1020;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  padding: 18px 0;
  font-family: 'Lato', Arial, sans-serif;
}
header nav a {
  color: #F6F3EF;
  font-size: 1rem;
  letter-spacing: 0.02em;
  font-weight: 500;
  padding: 7px 12px;
  position: relative;
  border-radius: 3px;
  transition: background 0.18s cubic-bezier(.3,0,.2,1), color 0.15s;
}
header nav a:hover, header nav a:focus {
  background: #23272C;
  color: #FFD700;
}
header nav .cta-primary {
  background: #9A8B6D;
  color: #fff;
  font-family: 'Playfair Display', serif;
  border-radius: 5px;
  padding: 9px 24px;
  font-size: 1.09rem;
  text-shadow: 0 1px 2px #312;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px #000a, 0 1px 0 #9A8B6D33;
  border: none;
  margin-left: 16px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
header nav .cta-primary:hover, header nav .cta-primary:focus {
  background: #7A6B4A;
  color: #FFD700;
  box-shadow: 0 3px 18px #7A6B4A44;
}

/* MOBILE NAV styles */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #9A8B6D;
  font-size: 2rem;
  border: none;
  position: absolute;
  right: 32px;
  top: 15px;
  z-index: 1101;
  cursor: pointer;
  padding: 8px;
  transition: color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #FFD700;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #181D22d9;
  backdrop-filter: blur(7px);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.6,0,.4,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #F6F3EF;
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
  margin: 24px 32px 18px 0;
  z-index: 1201;
  padding: 8px;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFD700;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 18px;
  padding: 0 32px;
}
.mobile-nav a {
  padding: 18px 0 18px 0;
  color: #F6F3EF;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  font-family: 'Lato', Arial, sans-serif;
  border-bottom: 1px solid #23272C60;
  width: 100%;
  transition: background 0.18s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #23272C99;
  color: #FFD700;
}

[aria-hidden="true"].mobile-menu {
  display: none !important;
}

/* HERO & CTA BUTTONS ============================= */
.cta-primary {
  display: inline-block;
  background: #9A8B6D;
  color: #F6F3EF;
  font-family: 'Playfair Display', serif;
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 13px 38px;
  border-radius: 6px;
  margin-top: 20px;
  box-shadow: 0 2px 10px #0008;
  border: none;
  cursor: pointer;
  text-shadow: 0 1px 2px #312;
  text-align: center;
  transition: background 0.21s cubic-bezier(.4,0,.2,1), color 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #7A6B4A;
  color: #FFD700;
  box-shadow: 0 5px 22px #7A6B4A66;
}

.more-link {
  margin-top: 20px;
  text-align: right;
}
.more-link a {
  color: #9A8B6D;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: underline;
  transition: color 0.15s;
}
.more-link a:hover {
  color: #FFD700;
}

/* ICONS & ACCENTS ================================= */
.feature-grid li, .unique-experiences-grid > div, .unique-benefits-grid > div, .values-grid > li, .suite-amenities-grid > li, .menu-highlights-grid > li, .therapy-types-grid > li {
  background: #23272C;
  border-radius: 8px;
  box-shadow: 0 1.5px 7px #0006;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px 14px;
  min-width: 220px;
  gap: 7px;
  transition: box-shadow 0.15s, transform 0.11s;
}
.feature-grid li:hover, .unique-experiences-grid > div:hover, .unique-benefits-grid > div:hover, .values-grid > li:hover, .suite-amenities-grid > li:hover {
  box-shadow: 0 7px 22px #23272C55;
  transform: translateY(-3px) scale(1.01);
}
.feature-grid img, .unique-experiences-grid img, .unique-benefits-grid img, .suite-amenities-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
  filter: grayscale(0.3) contrast(0.95);
}

/* PRICING ACCENTS ================================= */
.service-price, .service-fee {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  background: #9A8B6D;
  color: #fff;
  border-radius: 5px;
  padding: 4px 18px;
  font-size: 1.09rem;
  margin: 18px 0 0 0;
  box-shadow: 0 2px 10px #0003;
}

.special-offers {
  background: #24303F;
  border-left: 4px solid #9A8B6D;
  border-radius: 8px;
  padding: 18px 20px;
  margin-top: 22px;
  margin-bottom: 10px;
}


/* FOOTER ========================================= */
footer {
  background: #182127;
  color: #D4D2CA;
  padding: 42px 0 24px 0;
  margin-top: 70px;
  border-top: 2px solid #23272C;
}
footer .container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
  justify-content: space-between;
}
footer .brand-info {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}
footer .brand-info p {
  font-size: 1rem;
  color: #9A8B6D;
  font-family: 'Lato', Arial, sans-serif;
  margin-bottom: 0;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}
footer nav a {
  color: #D2CCA8;
  font-size: 1rem;
  transition: color 0.18s;
  border-radius: 3px;
  padding: 5px 7px;
}
footer nav a:hover, footer nav a:focus {
  color: #FFD700;
  background: #23272C90;
}
footer .brand-details {
  color: #A9A9A9;
  font-size: 0.96rem;
  line-height: 1.6;
}

/* SLIDER FOR TESTIMONIAL SECTION (multi-cards) === */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}

/* CARDS ========================================== */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* PANORAMIC VIEWS TEASER BLOCK =================== */
.panoramic-views-teaser {
  background: #23272C;
  border-radius: 10px;
  box-shadow: 0 1.5px 7px #0004;
  padding: 24px 18px;
  margin-top: 18px;
  margin-bottom: 10px;
}

/***************************************************
 * COOKIE CONSENT BANNER & MODAL                   *
 ***************************************************/
.cookie-banner {
  position: fixed;
  width: 100vw;
  left: 0; right: 0; bottom: 0;
  background: #181D22;
  color: #F6F3EF;
  border-top: 1.5px solid #9A8B6D88;
  box-shadow: 0 -5px 18px #0006;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 12px 22px 12px;
  animation: cookie-slide-up 0.55s cubic-bezier(.4,0,.2,1);
}
@keyframes cookie-slide-up {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-content {
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
  margin-top: 7px;
}
.cookie-btn {
  background: #23272C;
  color: #F6F3EF;
  border: 1.5px solid #9A8B6D;
  border-radius: 5px;
  padding: 8px 18px;
  font-family: 'Playfair Display', serif;
  font-size: 1.04rem;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, border 0.17s;
}
.cookie-btn.accept {
  background: #9A8B6D;
  color: #fff;
  border-color: #9A8B6D;
  font-weight: 700;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #7A6B4A;
  color: #FFD700;
}
.cookie-btn.reject {
  background: #22272A;
  color: #FFD700;
  border-color: #7A6B4A;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #44494E;
  color: #F6F3EF;
}
.cookie-btn.settings {
  background: #23272C;
  color: #9A8B6D;
  border-color: #9A8B6D;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #393F44;
  color: #FFD700;
}

/* COOKIE MODAL ------------------------- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0C2238BF;
  animation: fadeIn 0.3s cubic-bezier(.3,0,.3,1);
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #23272C;
  color: #F6F3EF;
  border-radius: 13px;
  box-shadow: 0 5px 48px #15191F99;
  max-width: 420px;
  width: 97vw;
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
  animation: modal-pop 0.26s;
}
@keyframes modal-pop {
  from { transform: scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  color: #FFD700;
  font-size: 1.22rem;
  margin-bottom: 11px;
}
.cookie-category {
  display: flex;
  align-items: center;
  border-radius: 7px;
  background: #181D22;
  padding: 11px 12px 11px 18px;
  margin-bottom: 9px;
  font-size: 1rem;
  gap: 17px;
}
.cookie-category label {
  font-weight: bold;
  color: #9A8B6D;
}
.cookie-category input[type="checkbox"] {
  accent-color: #9A8B6D;
  width: 18px;
  height: 18px;
}
.cookie-category input[disabled] {
  opacity: 0.7;
  cursor: default;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 19px;
  font-size: 1.5rem;
  color: #FFD700;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 11;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #F6F3EF;
}

/* FORMS (if needed) ============================== */
input, textarea, select {
  background: #23272C;
  border: 1.5px solid #9A8B6D;
  border-radius: 5px;
  padding: 10px 13px;
  font-family: 'Lato', Arial, sans-serif;
  color: #F6F3EF;
  font-size: 1rem;
  margin-bottom: 16px;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #FFD700;
  outline: none;
}
label {
  color: #9A8B6D;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
}

/* RESPONSIVE: MOBILE FIRST ======================= */
@media (max-width: 1150px) {
  .container {
    max-width: 980px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .content-wrapper {
    max-width: 760px;
    padding: 0;
  }
}
@media (max-width: 900px) {
  .container, .content-wrapper {
    max-width: 99%;
    padding-left: 7px;
    padding-right: 7px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .section {
    padding: 26px 9px;
    margin-bottom: 38px;
  }
  .container, .content-wrapper {
    padding-left: 5px;
    padding-right: 5px;
  }
  .card-grid, .feature-grid, .unique-experiences-grid, .unique-benefits-grid, .values-grid, .suite-amenities-grid, .menu-highlights-grid, .therapy-types-grid {
    flex-direction: column;
    gap: 15px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 14px;
  }
  footer .container {
    flex-direction: column;
    gap: 14px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 769px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  header nav {
    display: flex !important;
  }
}

/* ADDITIONAL INDUSTRIAL MODERN ACCENTS ========== */
body {
  background: linear-gradient(108deg, #181D22 0%, #0C2238 100%);
}
.card,
.text-section,
.feature-item,
.special-offers,
.panoramic-views-teaser,
.cookie-modal {
  border: 1.5px solid #23272C;

  /* Faux metallic/industrial shadow */
  box-shadow: 0 2px 10px 0 #23272C55, 0 0.5px 2.5px #62687A33;
}

::-webkit-scrollbar {
  background: #22272A;
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: #9A8B6D55;
  border-radius: 5px;
}

/* MICRO-INTERACTIONS ============================ */
.card, .feature-item,
.feature-grid li, .unique-experiences-grid > div, .suite-amenities-grid > li {
  transition: box-shadow 0.16s cubic-bezier(.45,0,.3,1), transform 0.13s;
}
.card:hover, .feature-item:hover,
.feature-grid li:hover, .unique-experiences-grid > div:hover, .suite-amenities-grid > li:hover {
  box-shadow: 0 10px 36px #23272C33, 0 2.5px 12px #9A8B6D24;
  transform: translateY(-2px) scale(1.01);
}

/* Misc ========================= */
hr {
  border: none;
  border-top: 1px solid #23272C44;
  margin: 26px 0 26px 0;
  width: 100%;
}

/* Accessibility focus */
a, button, input, select, textarea {
  outline: none;
}
a:focus, button:focus, .cta-primary:focus, .mobile-menu-close:focus, .mobile-menu-toggle:focus, .cookie-btn:focus, .cookie-modal-close:focus {
  box-shadow: 0 0 0 3px #FFD70090;
  outline: none;
}

/* Hide visually but keep for screen readers */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Ensure min spacing between all cards, per QA */
.card, .testimonial-card, .feature-item, .feature-grid li, .unique-experiences-grid > div, .suite-amenities-grid > li {
  margin-bottom: 20px;
}

/* Hide card bottom margin in last-child if in column direction (flex fix) */
.card-container > .card:last-child, .testimonial-slider > .testimonial-card:last-child {
  margin-bottom: 0;
}

/* END CSS */
