/* ===========================================
   CSS RESET & NORMALIZE
============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F2EFEA;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F2EFEA;
  color: #354153;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ===========================================
   BRAND COLORS & TYPOGRAPHY
============================================ */
:root {
  --brand-primary: #354153;
  --brand-secondary: #F2EFEA;
  --brand-bg: #F2EFEA;
  --brand-dark: #222c3a;
  --brand-accent: #a0732a;
  --brand-light-accent: #B3996C;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: #222c3a;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.2rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4 { font-size: 1.125rem; }
.lead {
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 400;
  color: #354153;
  margin-bottom: 24px;
}
p, ul, ol {
  font-family: var(--font-body);
  color: #354153;
  font-size: 1rem;
  margin-bottom: 1em;
}

strong {
  color: #222c3a;
  font-weight: 600;
}
.text-section ul {
  padding-left: 1.25em;
}

/* Visual hierarchy for links in nav/footer */
nav a {
  position: relative;
  padding: 6px 10px;
  color: #354153;
  font-family: var(--font-display);
  font-size: 1rem;
  transition: color 0.2s;
  border-radius: 5px;
}
nav a:hover,
nav a:focus {
  color: var(--brand-accent);
  background: rgba(160, 115, 42, 0.06);
}

/* ===========================================
   HEADER & NAVIGATION
============================================ */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 25px -10px rgba(34,44,58,0.08);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 76px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 28px;
  display: block;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.cta-btn {
  background: var(--brand-accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 29px;
  padding: 12px 32px;
  font-size: 1.06rem;
  margin-left: 22px;
  box-shadow: 0 2px 10px rgba(160,115,42,0.09);
  border: none;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.11s;
  outline: none;
  letter-spacing: 0.04em;
  position: relative;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #B3996C;
  color: #222c3a;
  box-shadow: 0 0 0 2px #a0732a22;
  transform: translateY(-2px) scale(1.03);
}

/* Burger Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--brand-accent);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 18px;
  transition: color 0.2s;
  line-height: 1;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #B3996C;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,44,58,0.95);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px 24px 0 0;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.72,.02,.29,.97);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 30px;
  margin-top: 10px;
  z-index: 200;
  align-self: flex-end;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--brand-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-end;
  margin-top: 50px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.38rem;
  letter-spacing: 0.04em;
  background: none;
  padding: 12px 22px;
  border-radius: 8px;
  transition: color 0.19s, background 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--brand-accent);
  background: rgba(179,153,108,0.16);
}

@media (max-width: 1024px) {
  header nav {
    gap: 5px;
  }
  .cta-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ===========================================
   HERO SECTION
============================================ */
main section:first-of-type {
  background: #fff;
  box-shadow: 0 4px 24px -8px rgba(34,44,58,.08);
  border-radius: 20px;
  margin-top: 22px;
}
main .lead {
  color: #354153;
}

/* ===========================================
   FLEX LAYOUTS & STRUCTURES
============================================ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 18px -4px rgba(34,44,58,0.11);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.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: 20px;
  padding: 20px 28px;
  background: #fff;
  color: #222c3a;
  border-radius: 14px;
  margin-bottom: 28px;
  box-shadow: 0 4px 16px -4px rgba(34,44,58,0.08);
  position: relative;
  border-left: 5px solid var(--brand-accent);
}
.testimonial-card p {
  color: #222c3a;
  font-size: 1.15rem;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 0px;
}
.testimonial-card strong {
  font-size: 1rem;
  color: var(--brand-dark);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 8px;
  margin-bottom: 4px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 10px -3px rgba(34,44,58,0.11);
  padding: 32px 22px 26px 22px;
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 348px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 5px solid #B3996C;
  transition: box-shadow 0.22s, border-color 0.18s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 26px -6px rgba(160,115,42,0.16);
  border-left-color: var(--brand-accent);
}
.feature-grid img {
  height: 38px;
  width: 38px;
  margin-bottom: 14px;
}
.faq-list h3 {
  margin-top: 26px;
  font-size: 1.1rem;
  color: var(--brand-accent);
}
.faq-list p {
  margin-bottom: 0.6em;
}

/* Spacing fixes */
.content-wrapper.text-section {
  padding: 16px 0;
}

/* ===========================================
   LISTS & DETAILS
============================================ */
ul {
  list-style: disc inside;
  margin-bottom: 1em;
}
ol {
  list-style: decimal inside;
  margin-bottom: 1em;
}
.text-section ul, .text-section ol {
  margin-left: 0.5em;
  padding-left: 1.1em;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 12px;
  font-size: 1.06rem;
}
.contact-details img {
  vertical-align: middle;
  margin-right: 8px;
  height: 19px;
  width: 19px;
}
.map {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 9px -3px rgba(34,44,58,0.09);
  padding: 22px;
  margin-top: 14px;
  font-size: 0.98rem;
}


/* ===========================================
   FOOTER
============================================ */
footer {
  width: 100%;
  background: #222c3a;
  padding: 48px 0 16px 0;
  color: #fff;
}
footer p {
  color: white;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}
footer a,
footer nav a {
  color: #fff;
  opacity: 0.92;
  transition: color 0.18s, opacity 0.15s;
  font-size: 1rem;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 10px;
}
footer a:hover,
footer nav a:hover {
  color: var(--brand-accent);
  opacity: 1;
  text-decoration: underline;
}
footer img {
  height: 42px;
  margin-bottom: 12px;
}
.footer-contact {
  font-size: 0.97rem;
  color: #F2EFEA;
}
.footer-contact a {
  color: #B3996C;
}

/* ===========================================
   COOKIE CONSENT BANNER & MODAL
============================================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  z-index: 150;
  background: #fff;
  color: #222c3a;
  box-shadow: 0 -2px 18px -3px rgba(34,44,58,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 24px 12px;
  gap: 32px;
  font-size: 1rem;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.25s, opacity 0.23s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(112%);
  pointer-events: none;
}
.cookie-banner-msg {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 1rem;
  color: #222c3a;
}
.cookie-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn, .cookie-btn-primary {
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: 22px;
  padding: 9px 24px;
  border: none;
  cursor: pointer;
  margin: 0;
  transition: background 0.14s, color 0.13s, box-shadow 0.16s;
}
.cookie-btn-primary {
  background: var(--brand-accent);
  color: #fff;
  font-weight: 600;
}
.cookie-btn-primary:hover,
.cookie-btn-primary:focus {
  background: #222c3a;
  color: #fff;
}
.cookie-btn {
  background: #fff;
  color: #222c3a;
  border: 1px solid #a0732a;
  font-weight: 500;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #f7f4ea;
  color: var(--brand-accent);
}

/* Cookie modal overlay */
.cookie-modal {
  position: fixed;
  z-index: 200;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(34,44,58,0.68);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 38px -8px rgba(160,115,42,0.21);
  padding: 38px 32px 24px 32px;
  min-width: 330px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #222c3a;
  position: relative;
}
.cookie-modal-title {
  font-family: var(--font-display);
  font-size: 1.26rem;
  font-weight: 600;
  color: var(--brand-accent);
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}
.cookie-category label {
  font-size: 1.05rem;
  font-weight: 500;
  color: #354153;
}
.cookie-modal-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: #a0732a;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #222c3a;
}

/* ========== Responsive COOKIE ========== */
@media (max-width: 620px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.95rem;
    padding: 16px 6px;
  }
  .cookie-modal-content {
    min-width: 0;
    width: 94vw;
    max-width: 97vw;
    padding: 28px 12px 16px 12px;
  }
}

/* ===========================================
   BUTTONS & INTERACTIONS
============================================ */
button, .cta-btn, .cookie-btn,
.cookie-btn-primary {
  user-select: none;
  outline: none;
}
button:focus,
.cta-btn:focus,
.cookie-btn:focus,
.cookie-btn-primary:focus {
  outline: 2px solid #a0732a;
  outline-offset: 2px;
}

/* Card hover effect (for gallery, features, etc.) */
.card, .feature-grid > div {
  transition: box-shadow 0.22s, border-color 0.18s, transform 0.1s;
}
.card:hover, .feature-grid > div:hover {
  box-shadow: 0 8px 26px -8px rgba(160,115,42,0.17);
  transform: translateY(-2px) scale(1.01);
  border-color: var(--brand-accent);
}

/* ===========================================
   RESPONSIVE DESIGN (mobile-first)
============================================ */
@media (max-width: 768px) {
  section {
    margin-bottom: 40px;
    padding: 26px 8px;
  }
  .container {
    max-width: 98vw;
    padding: 0 5px;
  }
  .footer-contact {
    font-size: 0.91rem;
  }
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    min-width: 0;
    padding: 14px 12px;
    border-radius: 11px;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 600px) {
  body {
    font-size: 0.99rem;
  }
  h1 {
    font-size: 1.38rem;
    margin-bottom: 12px;
  }
  h2 {
    font-size: 1.07rem;
    margin-bottom: 9px;
  }
  .cta-btn {
    padding: 10px 18px;
    font-size: 0.95rem;
  }
}

/* ===========================================
   MISC LUXURY PREMIUM DETAILS
============================================ */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

hr {
  border: 0;
  border-top: 1.5px solid #E7DFC9;
  margin: 36px 0;
}

/* GOLD ACCENTS */
.accent, .gold, .brand-accent {
  color: var(--brand-accent) !important;
}

.card::after, .feature-grid > div::after {
  content: '';
  display: block;
  height: 3px;
  width: 60px;
  background: var(--brand-accent);
  border-radius: 2px;
  margin-top: 18px;
  opacity: 0.15;
}

/* ===========================================
   PRINT STYLES
============================================ */
@media print {
  body, section, header, footer {
    background: #fff !important;
    color: #222c3a !important;
  }
  nav, .cta-btn, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal {
    display: none !important;
  }
}
