/* =======================
   CSS RESET & NORMALIZATION
   ======================= */
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; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.6;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  color: #102032;
  background-color: #FAFAF8;
  min-height: 100vh;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.4em; }
a { color: #113453; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #B7933A; }
strong, b { font-weight: 600; }
em, i { font-style: italic; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', 'Palatino Linotype', serif;
  color: #113453;
  line-height: 1.1;
  letter-spacing: 0.02em;
  font-weight: 600;
}
h1 { font-size: 2.7rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.5rem; margin-bottom: 12px; }
h4 { font-size: 1.25rem; }
.section h1, .section h2, .section h3 { margin-bottom: 16px; }
p, ul, ol { margin-bottom: 16px; }

/* =======================
   LUXURY/PREMIUM COLORS & TYPOGRAPHY
   ======================= */
:root {
  --color-primary: #113453;
  --color-secondary: #419C89;
  --color-accent: #E3D7BF;
  --color-gold: #B7933A;
  --color-bg: #FAFAF8;
  --color-dark: #102032;
  --color-white: #FFF;
  --shadow-lux: 0 10px 32px 0 rgba(17, 52, 83, 0.06), 0 2px 8px 0 rgba(17,52,83,0.09);
  --shadow-card: 0 4px 18px 0 rgba(180,147,58,0.09), 0 1.5px 6px 0 rgba(17,52,83,0.07);
  --border-radius: 18px;
}

body {
  background: var(--color-bg);
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
}

.container {
  width: 100%;
  max-width: 1060px;
  padding: 0 18px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lux);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  min-width: 290px;
  flex: 1 1 320px;
  border: 1px solid #e7e3d4;
  transition: box-shadow 0.2s, border 0.2s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(183, 147, 58, 0.14);
  border-color: var(--color-gold);
  z-index: 1;
}

.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: 28px 24px;
  border-radius: var(--border-radius);
  background: var(--color-accent);
  color: var(--color-dark);
  box-shadow: 0 3px 18px 0 rgba(17,52,83,0.09);
  margin-bottom: 20px;
  border-left: 4px solid var(--color-gold);
  font-style: italic;
}
.testimonial-card p {
  margin: 0;
  font-size: 1.14rem;
  line-height: 1.5;
  color: var(--color-dark);
}
.testimonial-author {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1rem;
  margin-top: 4px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
  padding: 18px 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ================
   BUTTONS & CTA
   ================ */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8em 2.3em;
  border-radius: 32px;
  border: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: var(--color-gold);
  color: #fff;
  text-shadow: 0 1px 2px rgba(17, 52, 83, 0.15);
  box-shadow: 0 2px 8px rgba(17,52,83,0.05);
  cursor: pointer;
  transition: background 0.17s, box-shadow 0.17s, color 0.17s;
  margin-top: 8px;
}
.cta-btn.primary {
  background: var(--color-gold);
  color: #fff;
}
.cta-btn.secondary {
  background: var(--color-primary);
  color: var(--color-accent);
}
.cta-btn:hover, .cta-btn:focus {
  background: #94771C;
  color: #fff;
  box-shadow: 0 6px 18px rgba(180,147,58,0.19), 0 1px 3px rgba(17,52,83,0.07);
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: var(--color-secondary);
  color: #fff;
}

/* ================
   NAVIGATION
   ================ */
header {
  background: var(--color-white);
  box-shadow: 0 3px 18px rgba(17,52,83,0.04);
  padding: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px 0 18px 0;
  flex-wrap: wrap;
  justify-content: flex-start;
  position: relative;
  font-size: 1.03rem;
}
.main-nav img {
  height: 42px;
  margin-right: 18px;
}
.main-nav a {
  color: var(--color-primary);
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 500;
  position: relative;
  padding: 5px 7px;
  border-radius: 7px;
  transition: background 0.19s, color 0.19s;
}
.main-nav a:not(.cta-btn):hover, 
.main-nav a:not(.cta-btn):focus {
  background: var(--color-accent);
  color: var(--color-gold);
}
.main-nav .cta-btn {
  margin-left: auto;
  margin-right: 0;
}

/* ================
   BURGER + MOBILE NAV
   ================ */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  border: none;
  color: var(--color-primary);
  font-size: 2.18rem;
  border-radius: 12px;
  padding: 6px 14px;
  position: absolute;
  right: 22px;
  top: 16px;
  z-index: 101;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(17,52,83,0.11);
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--color-gold);
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(17, 52, 83, 0.93);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.38,.93,.44,1.02);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 2.2rem;
  margin: 18px 30px 8px 0;
  cursor: pointer;
  z-index: 10002;
  transition: color 0.16s;
}
.mobile-menu-close:hover {
  color: var(--color-gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 36px 0 0 48px;
  gap: 26px;
}
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  color: var(--color-accent);
  font-size: 1.29rem;
  font-weight: 600;
  margin-bottom: 2px;
  padding: 8px 7px;
  border-radius: 10px;
  background: none;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-gold);
  color: #fff;
  outline: none;
}
/* Hide desktop nav, show mobile button below breakpoint */
@media (max-width: 1100px) {
  .main-nav {
    gap: 18px;
    font-size: 0.97rem;
  }
  .main-nav img {
    height: 38px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
    font-size: 0.97rem;
    padding-right: 40px;
  }
  .main-nav .cta-btn {
    padding: 0.7em 1.5em;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-nav { flex-direction: column; gap: 8px; align-items: center; }
}

/* ================
   FOOTER
   ================ */
footer {
  background: var(--color-white);
  padding: 36px 0 22px 0;
  border-top: 1.5px solid #E3D7BF;
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}
.footer-nav a {
  color: var(--color-secondary);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.09rem;
  transition: color 0.15s;
  position: relative;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-gold);
}

/* ================
   SECTIONS, SPACING, UTILITIES
   ================ */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: transparent;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-white);
}
.card-container { gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ================
   LUXURY DETAILS
   ================ */
hr {
  border: none;
  border-top: 1.5px solid var(--color-accent);
  margin: 32px 0;
}
.tagline {
  color: var(--color-secondary);
  font-size: 1.23rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  margin-bottom: 10px;
}

/* Luxury Gold Accent Line for Subtle Separator */
.lux-divider {
  width: 72px;
  height: 4px;
  background: var(--color-gold);
  border-radius: 3px;
  margin: 24px 0 24px 0;
}

/* ================
   LISTS
   ================ */
ul, ol {
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 10px;
  padding-left: 4px;
  font-size: 1.06rem;
}

/* Custom checkmark list for features */
ul {
  list-style: none;
  padding-left: 0;
}
ul li {
  position: relative;
  padding-left: 28px;
  color: #2C364C;
}
ul li:before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-gold);
  font-size: 1.1em;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1;
}

/* Service description lists - no checkmark */
.card ul, .text-section ul {
  list-style: none;
  padding-left: 0;
}
.card li:before, .text-section li:before {
  display: none;
}

/* ================
   RESPONSIVE LAYOUTS
   ================ */
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .section {
    padding: 22px 6px;
    margin-bottom: 38px;
  }
  section {
    padding: 22px 0;
    margin-bottom: 36px;
  }
  .content-grid, .card-container { gap: 12px; }
  .text-image-section, .content-wrapper {
    gap: 18px;
    flex-direction: column !important;
  }
  .testimonial-card {
    padding: 16px 12px;
    gap: 14px;
    font-size: 0.98rem;
  }
  .card {
    min-width: 88vw;
    padding: 18px 10px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.15rem; }
  .cta-btn { font-size: 1rem; padding: 0.75em 1.13em; }
  .testimonial-author { font-size: 0.92rem; }
}

/* =======================
   COOKIE CONSENT BANNER
   ======================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  color: var(--color-dark);
  width: 100vw;
  z-index: 12800;
  box-shadow: 0 -2px 24px rgba(17,52,83,0.11);
  padding: 22px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 1.02rem;
  border-top: 3px solid var(--color-gold);
  transition: transform 0.44s cubic-bezier(.42,.95,.35,1.06);
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
}
.cookie-btn, .cookie-settings-btn {
  background: var(--color-gold);
  color: #fff!important;
  border: none;
  padding: 0.7em 2em;
  border-radius: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1rem;
  margin: 0 2px;
  box-shadow: 0 1.5px 7px rgba(180,147,58,0.10);
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: #94771C;
  color: #fff;
}
.cookie-btn.reject {
  background: #e7e3d4;
  color: var(--color-primary)!important;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: var(--color-secondary);
  color: #fff!important;
}
.cookie-settings-btn {
  background: var(--color-secondary);
  color: #fff!important;
}
.cookie-settings-btn:focus,
.cookie-settings-btn:hover {
  background: var(--color-gold);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  background: rgba(17, 52, 83, 0.63);
  z-index: 16000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--color-white);
  padding: 34px 28px 26px 28px;
  border-radius: 18px;
  box-shadow: 0 5px 32px 0 rgba(17,52,83,0.18);
  width: 100%;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--color-dark);
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 10px;
  background: none;
  border: none;
  color: var(--color-secondary);
  font-size: 1.45rem;
  cursor: pointer;
  transition: color 0.16s;
  z-index: 5001;
}
.cookie-modal-close:hover { color: var(--color-gold); }
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 1.04rem;
}
.cookie-toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  display: inline-block;
}
.cookie-toggle-switch input { display: none; }
.cookie-toggle-btn {
  background: #e7e3d4;
  border-radius: 16px;
  width: 44px;
  height: 24px;
  transition: background 0.19s;
  position: relative;
  display: block;
  cursor: pointer;
}
.cookie-toggle-btn:before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--color-gold);
  border-radius: 50%;
  transition: left 0.18s, background 0.18s;
  box-shadow: 0 1.5px 3px rgba(17,52,83,0.11);
}
.cookie-toggle-switch input:checked + .cookie-toggle-btn {
  background: var(--color-secondary);
}
.cookie-toggle-switch input:checked + .cookie-toggle-btn:before {
  left: 23px;
  background: var(--color-secondary);
}
.cookie-category.essential .cookie-toggle-switch,
.cookie-category.essential label {
  opacity: 0.32;
  pointer-events: none;
}
/* Responsive Cookie Banner/Modal */
@media (max-width: 600px) {
  .cookie-banner {
    font-size: 0.97rem;
    padding: 16px 6px;
    gap: 12px;
  }
  .cookie-modal {
    padding: 16px 8px 12px 8px;
    max-width: 99vw;
  }
}

/* ================
   ANIMATIONS & INTERACTIONS
   ================ */
.cta-btn, .cookie-btn, .cookie-settings-btn, .main-nav a, .mobile-menu-toggle, .mobile-menu-close, .cookie-modal-close, .footer-nav a {
  transition: background 0.17s, color 0.17s, box-shadow 0.13s, outline 0.16s;
}
.card, .testimonial-card, .feature-item {
  transition: box-shadow 0.19s, border 0.19s, transform 0.14s;
}
.card:active, .feature-item:active, .testimonial-card:active {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 28px 0 rgba(180,147,58,0.11);
}

/* ================
   CUSTOM SCROLLBAR
   ================ */
::-webkit-scrollbar { width: 12px; background: #e7e3d4; }
::-webkit-scrollbar-thumb { background: var(--color-gold); border-radius: 8px; }

/* =======================
   END OF STYLE.CSS
   ======================= */
