/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
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, Helvetica, sans-serif;
  color: #222E36;
  background: #F6F7F9;
  min-height: 100vh;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.65;
}
img,
video,
svg {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #285169;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B09857;
}
ul, ol {
  margin-left: 1.2em;
  padding-left: 0.6em;
}
/* ==========================================================================
   BRAND VARIABLES (for fallback browsers only static colors used)
   ========================================================================== */
:root {
  --primary: #285169;
  --secondary: #6CBDC3;
  --accent: #F6F7F9;
  --gold: #B09857; /* luxury gold accent */
  --dark: #222E36;
  --white: #fff;
}
/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--dark);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
h1 { font-size: 2.375rem; margin-bottom: 0.6em; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }
h5, h6 { font-size: 1rem; }

p, li, blockquote, small, em {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--dark);
  font-size: 1rem;
}

blockquote {
  border-left: 4px solid var(--gold);
  color: var(--primary);
  padding-left: 1em;
  font-style: italic;
  background: #fcfbf6;
  margin: 1.5em 0;
}

strong { font-weight: 700; }
em { color: var(--primary); }
small { font-size: 0.92em; color: #68758A; }

/* ==========================================================================
   CONTAINERS & LAYOUT (MOBILE FIRST, FLEXBOX ONLY)
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 10px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 6px 24px 0 rgba(40,81,105,0.04), 0 1.5px 6px 0 rgba(176,152,87,0.06);
}
@media (min-width: 992px) {
  .content-wrapper {
    gap: 36px;
  }
  .section {
    padding: 48px 40px;
  }
}

/* CARDS AND FLEX CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--accent);
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(40,81,105,0.06);
  padding: 28px 20px;
  position: relative;
  flex: 1 1 260px;
  min-width: 220px;
}
.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;
}

/* Testimonials & Features */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fcfbf6;
  border: 1.5px solid #f1eddf;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(176,152,87,0.05);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 0;
}
.testimonial-card blockquote {
  border: none;
  padding-left: 0;
  background: none;
  color: var(--dark);
  font-size: 1.05rem;
}
.testimonial-author {
  font-size: 1rem;
  color: var(--primary);
  margin-left: 20px;
  min-width: 120px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* Feature grid cards */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.feature {
  background: var(--accent);
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(40,81,105,0.03);
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 200px;
  flex: 1 1 220px;
  border-bottom: 3px solid var(--gold);
  transition: box-shadow 0.25s, transform 0.2s;
  margin-bottom: 20px;
}
.feature img {
  max-height: 32px;
  margin-bottom: 16px;
}
.feature:hover {
  box-shadow: 0 6px 18px 0 rgba(176,152,87,0.12), 0 4px 24px 0 rgba(40,81,105,0.08);
  transform: translateY(-6px) scale(1.03);
}

/* Service blocks */
.service-list, .profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-block, .profile-block {
  background: var(--accent);
  padding: 24px 20px;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(176,152,87,0.05);
  flex: 1 1 240px;
  min-width: 220px;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.price {
  font-size: 1.125rem;
  color: var(--gold);
  font-weight: 700;
  margin-top: 6px;
}

/* ==========================================================================
   HERO / CALL-OUTS / BUTTONS
   ========================================================================== */
.hero {
  background: linear-gradient(120deg, #F6F7F9 72%, #fcfbf6 100%);
  padding: 60px 0 30px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 600px;
  text-align: left;
}
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  margin-top: 12px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 26px;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s, transform 0.18s;
  letter-spacing: 0.02em;
  box-shadow: 0 1px 6px 0 rgba(40,81,105,0.04);
  outline: none;
}
.button-primary {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--gold);
}
.button-primary:hover,
.button-primary:focus {
  background: var(--gold);
  color: var(--primary);
  box-shadow: 0 4px 18px 0 rgba(40,81,105,0.07);
  transform: translateY(-2px) scale(1.03);
}
.button-secondary {
  background: var(--gold);
  color: var(--dark);
  border: 2px solid var(--gold);
}
.button-secondary:hover,
.button-secondary:focus {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 18px 0 rgba(176,152,87,0.09);
  transform: translateY(-1.5px) scale(1.02);
}

/* ==========================================================================
   MAIN NAVIGATION (DESKTOP)
   ========================================================================== */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  position: relative;
  z-index: 10;
}
.main-nav > a img {
  max-height: 48px;
  margin-right: 28px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  align-items: center;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-size: 1rem;
  padding: 6px 14px;
  border-radius: 18px;
  border: 2px solid transparent;
  transition: color 0.18s, border 0.15s, background 0.18s;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  color: var(--gold);
  background: #fcfbf6;
  border-color: var(--gold);
}
.main-nav .button-primary {
  margin-left: 20px;
  margin-top: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 0;
  margin-top: 60px;
  box-shadow: 0 -1px 8px 0 rgba(40,81,105,0.08);
}
footer .container {
  padding: 32px 20px 16px 20px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-bottom: 14px;
}
.footer-nav a {
  color: var(--white);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  opacity: 0.92;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color 0.18s, border 0.18s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--gold);
  border-color: var(--gold);
}
.brand-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand-info img {
  max-height: 38px;
}
.brand-info p {
  color: var(--gold);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
}
.disclaimer {
  font-size: 0.94rem;
  color: #e4e8ec;
  background: transparent;
}

/* ==========================================================================
   MOBILE NAVIGATION / HAMBURGER STYLES
   ========================================================================== */
.mobile-menu-toggle {
  position: absolute;
  right: 18px;
  top: 24px;
  background: var(--gold);
  color: var(--primary);
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 14px 0 rgba(176,152,87,0.13);
  transition: background 0.15s, transform 0.15s;
  z-index: 1001;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--white);
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 96vw;
  max-width: 380px;
  background: var(--white);
  box-shadow: -4px 0 32px 0 rgba(40,81,105,0.15);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 32px 28px 28px 28px;
  transform: translateX(110%);
  transition: transform 0.32s cubic-bezier(.19, 1, .22, 1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--gold);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  align-self: flex-end;
  margin-bottom: 24px;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(176,152,87,0.12);
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary);
  color: var(--white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 6px;
}
.mobile-nav a {
  color: var(--primary);
  font-size: 1.18rem;
  padding: 14px 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-bottom: 1px solid #eed;
  transition: color 0.18s, background 0.13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--gold);
  background: #fcfbf6;
}
/* Hide main-desktop navigation and show burger menu on mobile */
@media (max-width: 991px) {
  .main-nav ul, .main-nav .button-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (min-width: 992px) {
  .mobile-menu-toggle,
  .mobile-menu {
    display: none !important;
    visibility: hidden;
  }
}
/* Prevent scrolling when mobile menu open (for <body> class .mobile-menu-open) */
body.mobile-menu-open {
  overflow: hidden;
}

/* ==========================================================================
   COOKIE CONSENT BANNER & MODAL (FLEX ONLY)
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #fcfbf6;
  border-top: 2px solid var(--gold);
  box-shadow: 0 -2px 18px 0 rgba(40,81,105,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 3000;
  padding: 18px 12px 16px 12px;
  animation: slideInUp 0.45s cubic-bezier(.19, 1, .22, 1);
}
@keyframes slideInUp {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  color: var(--dark);
  font-size: 1rem;
  text-align: center;
  margin-bottom: 8px;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.cookie-banner__button {
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 19px;
  cursor: pointer;
  background: var(--gold);
  color: var(--primary);
  transition: background 0.17s, color 0.17s, box-shadow 0.1s;
}
.cookie-banner__button--primary {
  background: var(--primary);
  color: var(--white);
}
.cookie-banner__button--primary:hover { background: var(--gold); color: var(--primary); }
.cookie-banner__button--secondary:hover { background: var(--primary); color: var(--white); }

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  z-index: 4000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,46,54,0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.32s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(40,81,105,0.14);
  max-width: 440px;
  width: 92vw;
  padding: 32px 22px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 8px;
}
.cookie-modal .switch {
  position: relative;
  display: inline-block;
  width: 37px;
  height: 21px;
}
.cookie-modal .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #d9d6c5;
  border-radius: 12px;
  transition: .2s;
}
.cookie-modal .switch input:checked + .slider {
  background-color: var(--gold);
}
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 4px;
  bottom: 3px;
  background-color: var(--white);
  border-radius: 50%;
  transition: .19s;
  box-shadow: 0 1px 2px 0 rgba(40,81,105,0.10);
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(13px);
}
.cookie-modal__buttons {
  display: flex;
  gap: 14px;
}
.cookie-modal__close {
  align-self: flex-end;
  background: var(--gold);
  color: var(--primary);
  font-size: 1.15rem;
  border: none;
  border-radius: 36px;
  padding: 5px 14px;
  margin-bottom: 6px;
  cursor: pointer;
  margin-top: -12px;
}
.cookie-modal__close:hover {
  background: var(--primary);
  color: var(--white);
}

/* ==========================================================================
   FORMS & INPUTS (BASICS)
   ========================================================================== */
input, textarea, select {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  border: 1.5px solid #d2d7e2;
  padding: 10px 12px;
  transition: border 0.16s, box-shadow 0.13s;
  background: #fafbfc;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 2px 12px 0 rgba(176,152,87,0.07);
}

/* ==========================================================================
   SECTION SPECIFICS
   ========================================================================== */
.services ul, .text-section ul {
  margin: 0 0 12px 22px;
  font-size: 1rem;
  color: var(--primary);
}
.services ul li::marker, .text-section ul li::marker {
  color: var(--gold);
}

.success {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  background: linear-gradient(125deg, #f6f7f9 70%, #fcfbf6 120%);
}
.success .content-wrapper {
  align-items: center;
  gap: 22px;
  text-align: center;
}
@media (min-width: 600px) {
  .success {
    padding: 120px 0 80px 0;
  }
}

/* ==========================================================================
   RESPONSIVE LAYOUT ADJUSTMENTS
   ========================================================================== */
@media (max-width: 991px) {
  .main-nav {
    flex-direction: row;
    padding: 12px 0 8px 0;
    min-height: 65px;
  }
}
@media (max-width: 800px) {
  .container {
    max-width: 98vw;
  }
  .feature-grid, .service-list, .profiles, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature, .service-block, .profile-block, .card {
    min-width: unset;
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .hero {
    padding: 34px 0 20px 0;
  }
  h1 { font-size: 1.42rem; }
  h2 { font-size: 1.15rem; }
}
@media (max-width: 600px) {
  .section {
    margin-bottom: 38px;
    padding: 18px 4px;
  }
  .feature, .service-block, .profile-block, .card, .testimonial-card {
    padding: 18px 9px;
    min-width: unset;
  }
  .footer-nav {
    gap: 8px 12px;
    font-size: 0.97rem;
  }
}
@media (max-width: 400px) {
  .main-nav > a img,
  .brand-info img {
    max-height: 34px;
  }
  .mobile-menu {
    max-width: 100vw;
    width: 100vw;
    padding: 20px 7vw 18px 7vw;
  }
}

/* ==========================================================================
   MICRO-INTERACTIONS & TRANSITIONS
   ========================================================================== */
.button-primary,
.button-secondary,
.cookie-banner__button,
.mobile-menu-toggle,
.mobile-menu-close,
.cookie-modal__close {
  transition: background 0.18s, color 0.18s, transform 0.15s, box-shadow 0.15s;
}
.feature,
.card,
.service-block,
.profile-block {
  transition: box-shadow 0.2s, transform 0.13s;
}
.feature:hover,
.card:hover,
.service-block:hover,
.profile-block:hover {
  box-shadow: 0 8px 32px 0 rgba(176,152,87,0.13);
  transform: translateY(-4px) scale(1.015);
}

/* ==========================================================================
   GOLD ACCENT DECORATIONS (Luxury details)
   ========================================================================== */
h1, h2, h3 {
  position: relative;
}
h2::after, .brand-info p::before {
  content: '';
  display: block;
  width: 38px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold);
  margin-top: 10px;
}
.brand-info p::before {
  width: 28px;
  height: 2.5px;
  margin-bottom: 6px;
  margin-top: 0;
}

/* Highlighted gold text, if needed */
.gold {
  color: var(--gold) !important;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* ==========================================================================
   PRINT STYLES (minimal)
   ========================================================================== */
@media print {
  nav, .mobile-menu, footer, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  body, main, section, .container {
    background: #fff !important;
    color: #222 !important;
    box-shadow: none !important;
  }
}
