/* -----------------------------------------------------------
   CSS RESET & NORMALIZE (No grid/column properties allowed)
------------------------------------------------------------*/
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  background: #F3F6F9;
  color: #21415B;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin: 0;
  padding-left: 24px;
}
h1, h2, h3, h4, h5, h6, p {
  margin-top: 0;
  margin-bottom: 16px;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .3s;
}
a:focus {
  outline: 2px solid #EDB700;
  outline-offset: 2px;
}
button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  transition: background .3s, color .3s, box-shadow .3s;
}

/* -----------------------------------------------------------
   BRAND FONTS
------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600&display=swap');
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F3F6F9;
  color: #21415B;
}
h1, h2, h3, h4, .cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.75rem;
  line-height: 1.2;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
  font-weight: 600;
}
p, li, span, ul {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #21415B;
}
strong {
  font-weight: 600;
}

/* -----------------------------------------------------------
   COLOR UTILS
------------------------------------------------------------*/
:root {
  --primary: #21415B;
  --secondary: #F3F6F9;
  --accent: #EDB700;
  --text: #21415B;
  --text-on-primary: #fff;
  --card-bg: #fff;
  --border-color: #e6e6eb;
  --shadow: 0 2px 12px 0 rgba(33, 65, 91, 0.09);
  --radius: 14px;
  --transition: all 0.3s cubic-bezier(0.42,0,0.58,1);
}

/* -----------------------------------------------------------
   CONTAINER & LAYOUT FLEXBOX PATTERNS
------------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1240px;
  padding: 0 18px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* For flexible horizontal/vertical templates */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid var(--border-color);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px 0 rgba(33, 65, 91, 0.13);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.feature-grid > div {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px 16px 22px;
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 3px solid var(--accent);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.feature-grid > div:hover {
  box-shadow: 0 6px 32px 0 rgba(33,65,91,0.18);
  border-left: 3px solid #bfa053;
}
.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: 20px;
  background: #fff;
  color: #212121;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  border-left: 4px solid var(--accent);
  font-style: italic;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.testimonial-card span {
  color: #21415B;
  font-weight: 600;
  font-size: 1rem;
  font-style: normal;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px 0 rgba(237, 183, 0, 0.18);
  border-left: 4px solid #bfa053;
}
.client-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  opacity: 0.67;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.inspiration-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.inspiration-cards > div {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 18px 16px 18px;
  min-width: 220px;
  max-width: 310px;
  flex: 1 1 220px;
  border-top: 3px solid var(--accent);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.inspiration-cards > div:hover {
  border-top: 3px solid #bfa053;
}

.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.blog-list article {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  flex: 1 1 240px;
  min-width: 240px;
  max-width: 370px;
  border-left: 3px solid var(--accent);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.blog-list article:hover {
  border-left: 3px solid #bfa053;
}
.blog-highlights {
  margin-top: 32px;
  background: #fff7e0;
  padding: 18px 20px;
  border-radius: var(--radius);
  color: #a77e05;
  font-weight: 500;
}

/* --------------------- HEADER & NAV ---------------------- */
header {
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  z-index: 50;
  box-shadow: 0 1px 8px 0 rgba(33,65,91,0.07);
  position: relative;
}
.logo img {
  height: 44px;
  width: auto;
  vertical-align: middle;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  gap: 22px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  color: var(--primary);
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 4px 3px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}
.cta-btn {
  display: inline-block;
  padding: 13px 28px;
  background: var(--accent);
  color: var(--text-on-primary);
  border-radius: 32px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  letter-spacing: .02em;
  box-shadow: 0 2px 10px 0 rgba(237,183,0,0.09);
  transition: background .2s, color .2s, box-shadow .3s;
  border: none;
  cursor: pointer;
  margin-left: 16px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #bfa053;
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(237,183,0,0.19);
}

/* BURGER BUTTON */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: var(--primary);
  border-radius: 10px;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  transition: box-shadow .2s, background .2s;
  box-shadow: 0 1px 4px 0 rgba(33,65,91,0.08);
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #f9f7ee;
  color: var(--accent);
}

/* --------- MOBILE NAV MENU: Slide-Over Drawer ----------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  max-width: 370px;
  background: #1d3552;
  color: #fff;
  z-index: 1200;
  transform: translateX(-110vw);
  box-shadow: 8px 0 36px -4px rgba(33,65,91,0.18);
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  transition: transform .38s cubic-bezier(.85,0,.25,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 0 22px 20px 0;
  font-size: 2.3rem;
  color: var(--accent);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #fff7e0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-left: 24px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.35rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color .25s, border-color .25s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}
.mobile-menu {
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
}

/* Mobile menu overlay */
body.mobile-menu-visible {
  overflow: hidden;
}

/* -------- HERO/LANDING SECTION --------- */
.hero {
  background: linear-gradient(108deg,#fff,#f7f9fb 37%,#f1efea 100%);
  padding: 56px 0 36px 0;
  margin-bottom: 60px;
}
.hero h1 {
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.25rem;
  color: #4e637a;
  margin-bottom: 30px;
}

/* -------------- SECTION PADDING & MARGINS -------------- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: var(--radius);
}
section:last-child {
  margin-bottom: 0;
}

/* -------------- CARDS AND LISTS ------------- */
ul {
  margin-bottom: 14px;
  line-height: 1.7;
  color: #21415B;
}
ul li {
  margin-bottom: 12px;
  font-size: 1rem;
  list-style-type: disc;
}
ul li:last-child {
  margin-bottom: 0;
}

/* ------------- CTA SECTION (Contact Prompt) ------------- */
.cta-section,
section.cta {
  text-align: center;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

/* --------------- FOOTER --------------- */
footer {
  background: #1b2b3c;
  color: #fff;
  padding-top: 38px;
  padding-bottom: 30px;
  border-top: 4px solid var(--accent);
}
footer .container {
  flex-direction: row;
  gap: 50px;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.84;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color .22s, opacity .22s;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--accent);
  opacity: 1;
  border-bottom: 2px solid var(--accent);
}
.footer-contact {
  color: #dfe5ec;
  font-size: 1rem;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact img {
  height: 18px;
  width: auto;
  margin-right: 9px;
  vertical-align: middle;
  display: inline-block;
}
.footer-contact span {
  font-size: 0.93rem;
  color: #f1e4ba;
  margin-top: 8px;
}

/* -------------- MICRO-INTERACTIONS -------------- */
.card, .feature-grid > div, .testimonial-card, .inspiration-cards > div, .blog-list article {
  transition: box-shadow .24s, border-color .24s, transform .18s;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover, .inspiration-cards > div:hover, .blog-list article:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 40px 0 rgba(33,65,91,0.13);
}

/* -------------- RESPONSIVE DESIGN -------------- */
@media (max-width: 1100px) {
  .feature-grid, .inspiration-cards, .blog-list {
    gap: 18px;
  }
  .feature-grid > div, .inspiration-cards > div, .blog-list article {
    min-width: 170px;
    max-width: 99%;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .feature-grid {
    gap: 16px;
  }
  .inspiration-cards, .blog-list {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 12px;
    padding: 12px 10px;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
    padding: 13px 22px;
    font-size: 1.07rem;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .feature-grid, .card-container, .inspiration-cards, .blog-list {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .feature-grid > div, .inspiration-cards > div, .blog-list article {
    min-width: 0;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    align-items: center;
  }
  .content-wrapper {
    gap: 16px;
  }
  section, .hero {
    padding: 26px 7px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.32rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  .blog-list article, .inspiration-cards > div, .feature-grid > div {
    padding: 16px 12px;
  }
  .testimonial-card {
    padding: 16px 11px;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 0 16px;
  }
}
@media (max-width: 650px) {
  .hero {
    padding: 20px 0 14px 0;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.35rem;
  }
  h2 {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }
  .cta-btn {
    padding: 10px 16px;
    font-size: 0.97rem;
  }
  .mobile-menu {
    max-width: 100vw;
  }
}

/* ------------- COOKIE CONSENT BANNER ------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  z-index: 2000;
  width: 95vw;
  max-width: 640px;
  background: #fff;
  color: #21415B;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -2px 20px 0 rgba(33, 65, 91, 0.18);
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 28px 18px 28px;
  opacity: 0;
  pointer-events: none;
  transition: transform .44s cubic-bezier(.85,0,.25,1), opacity .44s;
}
.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner__text {
  font-size: 1rem;
  color: #23405b;
}
.cookie-banner__actions {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-btn,
.cookie-btn-settings {
  padding: 8px 22px;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .01em;
  border: 2px solid var(--accent);
  background: var(--accent);
  color: #fff;
  margin: 0;
  cursor: pointer;
  transition: background .22s, color .22s, border-color .2s;
}
.cookie-btn.reject {
  background: #fff;
  color: var(--accent);
}
.cookie-btn.reject:hover {
  background: #fdf7e0;
  color: #a77e05;
  border-color: #a77e05;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #bfa053;
  color: #fff;
  border-color: #bfa053;
}
.cookie-btn-settings {
  background: #fff;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.cookie-btn-settings:hover {
  background: #fdf7e0;
  color: #a77e05;
  border-color: #a77e05;
}

/* ------------- COOKIE MODAL ------------- */
.cookie-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33, 65, 91, 0.25);
  z-index: 2100;
  display: none;
  opacity: 0;
  transition: opacity .34s;
}
.cookie-modal-backdrop.open {
  display: block;
  opacity: 1;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0.96);
  width: 99vw;
  max-width: 400px;
  background: #fff;
  color: #21415B;
  box-shadow: 0 4px 64px 0 rgba(33,65,91,0.13);
  border-radius: 20px;
  z-index: 2200;
  display: flex;
  flex-direction: column;
  padding: 24px 22px 20px 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .33s, transform .25s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h2 {
  font-size: 1.17rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  margin-bottom: 18px;
}
.cookie-modal-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}
.cookie-modal-list label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #ecebec;
  border-radius: 16px;
  position: relative;
  outline: none;
  margin-right: 6px;
  cursor: pointer;
  transition: background .22s;
}
.cookie-toggle:checked {
  background: var(--accent);
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left .22s;
}
.cookie-toggle:checked:before {
  left: 18px;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  padding: 8px 20px;
}
.cookie-modal .cookie-btn.reject {
  background: #fff;
  color: var(--accent);
}

/* ------------- DARK TEXT IN TESTIMONIALS/REVIEWS ------------- */
.testimonial-card, .testimonial-card * {
  color: #21314b !important;
}

/* ------------- ADDITIONAL LUXURY DETAILS ------------- */
h1, h2, h3, h4, h5 {
  position: relative;
}
h2:after, h3:after {
  content: '';
  display: block;
  width: 38px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 6px;
}
h2:after {
  width: 48px;
  height: 4px;
  margin-top: 9px;
}
@media (max-width: 480px) {
  h2:after, h3:after {
    width: 26px;
    height: 2px;
    margin-top: 3px;
  }
}

/* --------------- ACCESSIBILITY FOCUS STATES --------------- */
:focus-visible {
  outline: 2px solid var(--accent) !important;
  outline-offset: 2px;
}

/* -----------------------------------------------------------
   UTILITIES
------------------------------------------------------------*/
.hide {
  display: none !important;
}
.d-flex {
  display: flex;
  gap: 8px;
}
.mt-20 {
  margin-top: 20px !important;
}
.mt-40 {
  margin-top: 40px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-40 {
  margin-bottom: 40px !important;
}

/* END OF STYLE.CSS */
