/* ============================================== */
/*                 RESET & BASELINE               */
/* ============================================== */

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #181818;
  background: #fff;
  min-height: 100vh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.3s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style-position: outside;
  margin-left: 1.3em;
  margin-bottom: 1.3em;
}
ul:last-child, ol:last-child {
  margin-bottom: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  color: #101010;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.16;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
}
p, li, dl, dd {
  font-size: 1rem;
  margin-bottom: 10px;
}
strong {
  font-weight: 700;
  color: #131313;
}
a {
  color: #233B4D;
  text-decoration: underline;
  transition: opacity .2s;
}
a:hover, a:focus {
  opacity: 0.7;
}

/* ============================================== */
/*                 MAIN LAYOUT SPACING            */
/* ============================================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 20px 0 rgba(30,30,30,.04), 0 1.5px 8px 0 rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* ================ FLEXBOX MANDATORY PATTERNS ================ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #f5f5f6;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(15,18,24,0.06);
  padding: 24px;
  flex: 1 1 320px;
  transition: transform .17s, box-shadow .2s;
}
.card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 4px 28px 0 rgba(25,30,30,0.10);
}
.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: center;
  gap: 20px;
  padding: 20px;
  background: #f7f7f9;
  border-radius: 12px;
  box-shadow: 0 1.5px 8px 0 rgba(40,45,50,0.05);
  margin-bottom: 20px;
  border: 1px solid #e9e9ef;
}
.testimonial-card p {
  color: #181818;
  font-size: 1.15rem;
  font-style: italic;
}
.testimonial-meta {
  display: flex;
  flex-direction: row;
  gap: 12px;
  font-size: 1rem;
  color: #1a1a1c;
  font-weight: 500;
}
.star-rating-overview {
  margin-top: 20px;
  color: #191A1A;
  font-weight: 600;
  font-size: 1.1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ============================================== */
/*             CUSTOM COMPONENTS & GRIDS          */
/* ============================================== */
.feature-grid, .usp-grid, .benefits-grid, .expertise-grid, .unique-amenities, .team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 15px;
}
.feature-grid li,
.usp-grid li,
.benefits-grid li,
.expertise-grid li,
.unique-amenities li,
.team-profiles > .text-section {
  background: #f5f5f6;
  border-radius: 11px;
  box-shadow: 0 2px 8px 0 rgba(22,22,22,.04);
  padding: 20px 18px;
  margin-bottom: 0;
  flex: 1 1 240px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: #202020;
  transition: box-shadow .2s;
}
.feature-grid li img, .usp-grid li img, .benefits-grid li img, .expertise-grid li img, .unique-amenities li img {
  width: 38px;
  margin-bottom: 10px;
}
.customer-quotes {
  margin-top: 18px;
}
.customer-quotes blockquote {
  border-left: 5px solid #222;
  font-size: 1.12rem;
  color: #181818;
  padding: 12px 18px;
  margin: 0;
  background: #f8f8fa;
  border-radius: 7px;
  font-style: italic;
}
.customer-quotes blockquote span {
  display: block;
  font-size: 0.96rem;
  color: #555;
  margin-top: 7px;
  font-style: normal;
}

.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
}
.team-profiles > .text-section {
  min-width: 220px;
  flex: 1 1 310px;
  background: #f5f5f6;
  border-radius: 12px;
  box-shadow: 0 1.5px 8px 0 rgba(40,45,50,0.04);
  padding: 18px 15px;
}
.unique-amenities {
  margin-top: 10px;
}

/* ============================================== */
/*                   HEADER & NAV                 */
/* ============================================== */
header {
  background: #fff;
  border-bottom: 1px solid #e2e3e5;
  padding: 0 0 0 0;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 50;
}
header > a img {
  max-height: 44px;
  margin-right: 32px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
header nav a {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  color: #233B4D;
  font-weight: 600;
  font-size: 1.07rem;
  text-decoration: none;
  padding: 6px 13px;
  border-radius: 7px;
  letter-spacing: .02em;
  transition: background 0.20s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: #111;
  color: #fff;
}
header nav a.cta {
  background: #233B4D;
  color: #fff;
  border-radius: 40px;
  margin-left: 10px;
  font-size: 1.1rem;
  letter-spacing: .05em;
  box-shadow: 0 2px 8px 0 rgba(30,67,90,0.10);
  padding: 6px 22px;
  font-weight: 700;
  transition: background 0.17s, color 0.15s;
}
header nav a.cta:hover, header nav a.cta:focus {
  background: #131313;
  color: #fff !important;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #111;
  font-size: 2rem;
  padding: 6px 14px;
  border-radius: 7px;
  margin-left: 18px;
  display: none;
  cursor: pointer;
  transition: background 0.13s;
  z-index: 120;
}
.mobile-menu-toggle:focus {
  background: #ddd;
}
@media (max-width: 1024px) {
  header nav {
    gap: 10px;
  }
  header > a img {
    margin-right: 16px;
  }
}
@media (max-width: 920px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ================== MOBILE MENU ================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,20,22,0.88);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  opacity: 0;
  pointer-events: none;
  z-index: 1500;
  transform: translateX(100%);
  transition: opacity .37s cubic-bezier(.47,1.64,.41,.8), transform .38s cubic-bezier(.47,1.64,.41,.8);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  background: #191b1c;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 26px 0 0;
  cursor: pointer;
  box-shadow: 0 1.5px 8px 0 rgba(20,21,24,0.08);
  transition: background .14s;
  z-index: 2000;
}
.mobile-menu-close:hover {
  background: #333;
}
.mobile-nav {
  width: 92vw;
  max-width: 360px;
  background: #fff;
  border-radius: 13px 0 0 13px;
  margin-top: 28px;
  margin-right: 0;
  padding: 28px 26px 36px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 8px 40px 0 rgba(32,32,36,0.22);
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  color: #191f23;
  font-size: 1.22rem;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background .17s, color .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #233B4D;
  color: #fff;
}
@media (max-width: 920px) {
  .mobile-menu {
    display: flex;
  }
}

/* ============================================== */
/*                    FOOTER                     */
/* ============================================== */
footer {
  background: #191d1e;
  color: #e9e9ea;
  padding: 0 0 0 0;
}
footer .container {
  padding-top: 34px;
  padding-bottom: 26px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 7px;
}
footer nav a {
  color: #e5e5e7;
  text-decoration: none;
  font-size: 1rem;
  padding: 4px 11px;
  border-radius: 7px;
  font-weight: 500;
  transition: background .13s, color .12s;
}
footer nav a:hover, footer nav a:focus {
  background: #22282f;
  color: #fff;
}
footer p, footer a {
  color: #c6c6cb;
  font-size: .99rem;
}

/* ============================================== */
/*                    BUTTONS                    */
/* ============================================== */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  background: #191d1e;
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 11px 32px;
  border: none;
  border-radius: 24px;
  box-shadow: 0 2px 10px 0 rgba(30,45,74,0.14);
  margin-top: 7px;
  margin-bottom: 7px;
  text-decoration: none;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background .18s, color .14s, box-shadow .19s, transform .14s;
}
.cta:hover, .cta:focus {
  background: #233B4D;
  color: #ffffff;
  box-shadow: 0 5px 28px 0 rgba(25,40,55,0.15);
  transform: translateY(-2px) scale(1.03);
}

/* ============================================== */
/*                  TABLES/STYLES                */
/* ============================================== */
table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 17px;
  font-size: 1rem;
  background: #f5f6f8;
}
thead {
  background: #222433;
  color: #fff;
}
thead th {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 13px 10px;
  text-align: left;
  letter-spacing: 0.02em;
}
td, th {
  padding: 11px 10px;
  border-bottom: 1px solid #e8e9ee;
}
tr:last-child td {
  border-bottom: none;
}
td {
  color: #222;
}
tbody tr:hover {
  background: #efefef;
}

/* ============================================== */
/*                 DL/FAQ STYLES                 */
/* ============================================== */
dl {
  margin: 22px 0 22px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
dt {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  color: #101010;
  margin-bottom: 2px;
}
dd {
  margin-bottom: 9px;
  color: #383838;
  font-size: 1.03rem;
}

/* ============================================== */
/*                 MONOCHROME STYLES             */
/* ============================================== */
body,
.section,
.card,
.feature-grid li,
.usp-grid li,
.benefits-grid li,
.expertise-grid li,
.unique-amenities li,
.team-profiles > .text-section,
footer,
table {
  background: #fff;
}
h1, h2, h3, h4, h5, h6, th, dt {
  color: #191B1D;
}
p, ul, ol, td, dd, .testimonial-meta {
  color: #242427;
}
.text-section {
  color: #262628;
}
.feature-grid li,
.usp-grid li,
.benefits-grid li,
.expertise-grid li,
.unique-amenities li,
.team-profiles > .text-section {
  background: #f5f6f8;
  border: 1px solid #e5e5e9;
  color: #1c1d20;
}
.card {
  background: #f6f7f9;
}
footer {
  background: #131313;
}
h1, h2 {
  border-left: 4px solid #233B4D;
  padding-left: 12px;
}
input, select, textarea {
  color: #1c1c1c;
  background: #f6f7f9;
  border: 1px solid #d2d2da;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 12px;
  transition: border .14s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border: 1.5px solid #233B4D;
}

/* ============================================== */
/*              RESPONSIVE DESIGN                */
/* ============================================== */
@media (max-width: 1200px) {
  .container { max-width: 93vw; }
}
@media (max-width: 1024px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .feature-grid li, .benefits-grid li, .usp-grid li, .team-profiles > .text-section, .expertise-grid li {
    min-width: 160px;
    padding: 14px 11px;
    font-size: .98rem;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  header, footer {
    padding: 0 0 0 0;
  }
  .section {
    margin-bottom: 38px;
    padding: 19px 6px;
  }
  .content-wrapper, .content-grid, .feature-grid, .usp-grid, .benefits-grid, .expertise-grid, .unique-amenities, .team-profiles {
    flex-direction: column;
    gap: 17px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .feature-grid li, .usp-grid li, .benefits-grid li, .expertise-grid li, .unique-amenities li, .team-profiles > .text-section {
    min-width: unset;
    width: 100%;
    box-sizing: border-box;
  }
  .card-container {
    flex-direction: column;
    gap: 12px;
  }
  .card {
    padding: 14px 8px;
  }
  h1 {
    font-size: 1.25rem;
  }
  h2 {
    font-size: 1.08rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.13rem; }
  header > a img { max-height: 35px; }
  .testimonial-card { padding: 12px 6px; }
}

/* ============================================== */
/*             COOKIE CONSENT BANNER              */
/* ============================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 18px;
  background: #23262d;
  color: #fff;
  z-index: 2222;
  padding: 23px 28px;
  box-shadow: 0 -2px 24px rgba(20,22,25,0.11);
  font-size: 1.07rem;
  transform: translateY(50px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .36s cubic-bezier(.42,1.6,.44,.84), transform .38s cubic-bezier(.42,1.6,.44,.84);
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner-message {
  flex: 1 1 300px;
  min-width: 150px;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex: 1 1 auto;
}
.cookie-banner button,
.cookie-banner .cookie-settings-btn {
  background: #233B4D;
  color: #fff;
  border: none;
  padding: 8px 22px;
  border-radius: 22px;
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .13s, color .11s;
  box-shadow: 0 1.5px 8px 0 rgba(23,34,40,0.08);
}
.cookie-banner button:hover,
.cookie-banner .cookie-settings-btn:hover {
  background: #1B7D60;
}
.cookie-banner .cookie-reject-btn {
  background: #fff;
  color: #191a1c;
  border: 1.2px solid #22272D;
}
.cookie-banner .cookie-reject-btn:hover {
  background: #23262d;
  color: #fff;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 7px;
    font-size: .98rem;
    gap: 10px;
  }
  .cookie-banner-buttons {
    flex-direction: column;
    gap: 8px;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed; left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(20,22,25,0.53);
  z-index: 2420;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 6px 40px 0 rgba(40,45,53,0.16);
  padding: 38px 24px 24px 24px;
  max-width: 410px;
  width: 90vw;
  color: #212326;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: modalSlideIn .35s cubic-bezier(.43,1.65,.43,.7);
}
@keyframes modalSlideIn {
  0% { opacity: 0; transform: translateY(70px) scale(.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  background: #23262d;
  color: #fff;
  line-height: 1;
  font-size: 1.7rem;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}
.cookie-modal h2 {
  font-size: 1.39rem;
  margin-bottom: 12px;
  border-left: 4px solid #233B4D;
  padding-left: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-toggle {
  appearance: none;
  width: 40px;
  height: 22px;
  background: #e2e4e8;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .16s;
}
.cookie-toggle:checked {
  background: #233B4D;
}
.cookie-toggle:disabled {
  background: #ebebeb;
  cursor: not-allowed;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left .18s, background .16s;
}
.cookie-toggle:checked:before {
  left: 21px;
  background: #e9e9e9;
}
.cookie-category-description {
  color: #262628;
  font-size: .98rem;
}
.cookie-category-label {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  color: #1c1e20;
}

/* ============================================== */
/*                   MISC STYLING                */
/* ============================================== */
::-webkit-scrollbar { width: 8px; background: #f3f3f3; }
::-webkit-scrollbar-thumb { background: #ddd; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #bbb; }

/* ================= TYPOGRAPHY SPACING ================ */
.section h1,
.section h2 {
  margin-bottom: 13px;
}
.section p,
.section ul,
.section table,
.section blockquote {
  margin-bottom: 18px;
}
.section ul:last-child,
.section p:last-child {
  margin-bottom: 0;
}

/* ================= VISUAL ELEMENTS ================ */
.card, .feature-grid li, .testimonial-card, .usp-grid li, .benefits-grid li, .expertise-grid li, .team-profiles > .text-section {
  border-radius: 12px;
  box-shadow: 0 2px 13px 0 rgba(30,33,45,0.06);
  border: 1px solid #e9e9ef;
  background: #f6f7fa;
}

/* =================== MICROINTERACTIONS =================== */
.card, .feature-grid li, .usp-grid li, .benefits-grid li, .expertise-grid li, .team-profiles > .text-section, .testimonial-card {
  transition: box-shadow .21s, transform .17s;
}
.card:hover, .feature-grid li:hover, .usp-grid li:hover, .benefits-grid li:hover, .expertise-grid li:hover, .team-profiles > .text-section:hover {
  box-shadow: 0 4px 30px 0 rgba(20,30,44,0.10);
  transform: translateY(-3px) scale(1.01);
}

/* ================ ACCESSIBILITY ================== */
:focus {
  outline: 2px dashed #1b7e62;
  outline-offset: 2px;
}

/* ================= Z-INDEX SAFETY ================= */
header { z-index: 120; }
.mobile-menu { z-index: 1500; }
.cookie-banner { z-index: 2222; }
.cookie-modal-overlay { z-index: 2420; }

/* ============================================== */
/*           CLASSES FROM HTML STRUCTURE         */
/* ============================================== */

/* Already matched all classes used in HTML, including:
.section, .card-container, .card, .content-grid, .text-image-section, .testimonial-card, .feature-item, .feature-grid, .usp-grid, .benefits-grid, .expertise-grid, .container, .content-wrapper, .text-section, .star-rating-overview,
.customer-quotes, .team-profiles, .unique-amenities, .mobile-menu, .mobile-menu-toggle, .mobile-menu-close, .cta, .mobile-nav, .cookie-banner, .cookie-banner-visible, .cookie-modal, .cookie-modal-overlay, .cookie-category, .cookie-toggle
*/
