/* ---------------------------------------------------
   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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #faf7f3;
  color: #24334A;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  box-sizing: border-box;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
button { cursor: pointer; background: none; }

/* ---------------------------------------------------
   BRAND FONTS
--------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700;900&family=Open+Sans:wght@400;600&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #24334A;
}
h1 { font-size: 2.25rem; line-height: 1.15; margin-bottom: 18px; }
h2 { font-size: 1.5rem; line-height: 1.18; margin-bottom: 16px; }
h3 { font-size: 1.2rem; line-height: 1.22; margin-bottom: 12px; }
strong {
  font-weight: 700;
  color: #24334A;
}
p, li, ul, ol, label { font-size: 1rem; font-family: 'Open Sans', Arial, sans-serif; }

/* ---------------------------------------------------
   GENERAL CONTAINERS AND SECTIONS
--------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 16px;
}
.section {
  margin-bottom: 60px !important;
  padding: 40px 20px !important;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

@media (min-width: 900px) {
  .content-wrapper {
    gap: 28px;
  }
}

/* ---------------------------------------------------
   HEADER & NAVIGATION
--------------------------------------------------- */
header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e3e3e3;
  position: sticky;
  top: 0;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 0;
}
header > a:first-child {
  padding: 16px 0 8px 0;
  display: flex;
  align-items: center;
  max-width: 200px;
  margin-left: 20px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 0 0 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 0;
  color: #24334A;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-bottom 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #EFC371;
  border-bottom: 2px solid #EFC371;
}
.cta-button {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  background: #24334A;
  color: #EFC371;
  border-radius: 32px;
  padding: 11px 32px;
  font-size: 1.16rem;
  letter-spacing: 0.02em;
  margin-left: auto;
  margin-right: 20px;
  box-shadow: 0 2px 12px rgba(36, 51, 74, 0.08);
  border: 2px solid #EFC371;
  transition: background 0.23s, color 0.23s, box-shadow 0.18s, transform 0.13s;
  display: inline-block;
  text-align: center;
}
.cta-button:hover, .cta-button:focus {
  background: #EFC371;
  color: #24334A;
  box-shadow: 0 2px 18px rgba(239, 195, 113, 0.14);
  transform: translateY(-1px) scale(1.03);
  border-color: #24334A;
}
.secondary-link {
  color: #24334A;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.18s;
}
.secondary-link:hover, .secondary-link:focus {
  color: #EFC371;
  text-decoration: none;
}
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  margin-right: 16px;
  font-size: 2.1rem;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  color: #24334A;
  background: rgba(239, 195, 113, 0.10);
  border: 2px solid #EFC371;
  transition: background 0.18s, color 0.18s, border 0.16s;
  z-index: 1102;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #EFC371;
  color: #24334A;
  border-color: #24334A;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  max-width: 370px;
  background: #24334A;
  box-shadow: -8px 0 24px rgba(36,51,74,0.15);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.67,.03,.29,1.01);
  z-index: 2002;
  display: flex;
  flex-direction: column;
  padding: 32px 28px 24px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-left: auto;
  color: #EFC371;
  font-size: 2.1rem;
  background: transparent;
  border: none;
  padding: 0 4px 18px 0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(239,195,113,0.23);
  padding: 9px 0;
  transition: color 0.2s, border-bottom 0.16s;
  letter-spacing: 0.01em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #EFC371;
  border-bottom: 1px solid #EFC371;
}

/* Hide main nav/cta on mobile */
@media (max-width: 1100px) {
  .main-nav, .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}
@media (min-width: 1101px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  .mobile-menu {
    display: none !important;
  }
  header {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    min-height: 80px;
  }
}

header {
  box-shadow: 0 4px 24px -6px rgba(36,51,74,0.06);
}

/* ---------------------------------------------------
   SECTION, CARD, FLEXBOX STANDARDS
--------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(36,51,74,0.08);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  min-width: 270px;
  flex: 1 1 250px;
  border: 1.5px solid #ede7dc;
  transition: box-shadow 0.18s, border-color 0.15s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(239, 195, 113, 0.14);
  border-color: #EFC371;
  transform: translateY(-3px);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
}

.feature-list, .section ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0 0 14px 0;
  padding: 0;
}
.feature-list li,
.section ul li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.03rem;
  background: rgba(239,195,113,0.08);
  border-radius: 10px;
  padding: 12px 18px;
  border-left: 4px solid #EFC371;
}
.feature-list img {
  width: 36px;
  height: 36px;
}
ol {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-left: 1.2em;
  color: #24334A;
}
ol li {
  position: relative;
  padding-left: 0.6em;
}

/* Testimonials */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-left: 4px solid #EFC371;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(36,51,74,0.07);
  padding: 20px 28px;
  margin-bottom: 24px;
}
.testimonial-card blockquote {
  font-family: 'Merriweather', serif;
  font-size: 1.16rem;
  font-style: italic;
  color: #24334a;
}
.testimonial-card p strong {
  color: #EFC371;
  font-family: 'Merriweather', serif;
  font-weight: 700;
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 12px;
  }
}

/* ---------------------------------------------------
   FEATURE ITEM STYLE
--------------------------------------------------- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ---------------------------------------------------
   HERO SECTIONS
--------------------------------------------------- */
section:first-of-type {
  background: linear-gradient(120deg, #fff8ef 70%, #ede7dc 100%);
  border-bottom: 1.5px solid #EFC371;
  box-shadow: 0 6px 16px -6px rgba(239,195,113,0.11);
}
section:first-of-type h1 {
  margin-top: 20px;
}

/* ---------------------------------------------------
   ABOUT US (INFO SECTIONS)
--------------------------------------------------- */
.text-section {
  font-size: 1.08rem;
  background: #f8f4ed;
  padding: 18px 20px 18px 22px;
  border-radius: 11px;
  border-left: 4px solid #EFC371;
  color: #24334A;
}

/* ---------------------------------------------------
   FOOTER
--------------------------------------------------- */
footer {
  background: #24334A;
  color: #fff;
  padding: 40px 0 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 70px;
  box-shadow: 0 -1px 21px rgba(36,51,74,0.09);
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.footer-nav a {
  color: #EFC371;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.brand-footer {
  font-size: 0.97rem;
  opacity: 0.72;
  text-align: center;
}

/* ---------------------------------------------------
   SPACING ADJUSTMENTS (8/16/24/32 SYSTEM)
--------------------------------------------------- */
h1, h2, h3, h4, h5, h6 { margin-top: 0; }
h1 { margin-bottom: 18px; }
h2 { margin-bottom: 15px; }
h3 { margin-bottom: 10px; }
p, ul, ol { margin-bottom: 16px; }
ul:last-child, .feature-list:last-child, .section ul:last-child, ol:last-child { margin-bottom: 0; }
.section:not(:last-child) { margin-bottom: 60px; }
.section { margin-bottom: 60px; padding: 40px 20px; }

/* ---------------------------------------------------
   BUTTONS & MICRO-INTERACTIONS
--------------------------------------------------- */
button, .cta-button, .secondary-link {
  transition: background 0.19s, color 0.18s, border 0.15s, box-shadow 0.2s, transform 0.11s;
}
button:focus, .cta-button:focus { outline: 2px solid #EFC371; outline-offset: 2px; }

/* ---------------------------------------------------
   FORMS (CONTACT/FUTURE USAGE)
--------------------------------------------------- */
input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1.5px solid #ede7dc;
  background: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
  transition: border 0.17s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #EFC371;
}
label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

/* ---------------------------------------------------
   COOKIES BANNER & MODAL
--------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #24334A;
  color: #fff;
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 5vw 27px 5vw;
  box-shadow: 0 -6px 24px rgba(36, 51, 74, 0.16);
  gap: 30px;
  animation: bannerIn 0.50s cubic-bezier(.38,.04,.42,1.01);
}
@keyframes bannerIn {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-content { max-width: 600px; line-height: 1.45; font-size: 1rem; }
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-banner button {
  border-radius: 30px;
  padding: 10px 22px;
  font-size: 1rem;
  border: 2px solid #EFC371;
  font-weight: 700;
  background: #EFC371;
  color: #24334A;
  transition: all 0.19s cubic-bezier(.57,.11,.58,1.01);
}
.cookie-banner button.cookie-settings {
  background: transparent;
  color: #EFC371;
  border: 2px solid #EFC371;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #24334A;
  color: #EFC371;
  border: 2px solid #EFC371;
}
.cookie-banner button.cookie-settings:hover,
.cookie-banner button.cookie-settings:focus {
  background: #EFC371;
  color: #24334A;
}
@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; gap: 18px; padding: 18px 7vw; }
  .cookie-banner-content { font-size: 0.98rem; }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3500;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(36,51,74,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.35s cubic-bezier(.43,0,.59,1.1);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 410px;
  width: 100%;
  padding: 36px 28px 28px 28px;
  box-shadow: 0 8px 36px rgba(36,51,74,0.14);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: modalIn 0.35s cubic-bezier(.43,0,.59,1.1);
}
@keyframes modalIn {
  from { transform: scale(0.96); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.23rem;
  color: #24334A;
  margin-bottom: 12px;
  font-family: 'Merriweather', serif;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 12px 0 12px 0;
  border-bottom: 1px solid #ede7dc;
}
.cookie-category:last-child { border-bottom: none; }
.cookie-toggle {
  width: 38px;
  height: 20px;
  border-radius: 12px;
  background: #ede7dc;
  position: relative;
  transition: background 0.21s;
}
.cookie-toggle.enabled {
  background: #EFC371;
}
.cookie-toggle .toggle-knob {
  position: absolute;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(36,51,74,0.10);
  transition: left 0.19s;
}
.cookie-toggle.enabled .toggle-knob {
  left: 20px;
  background: #24334A;
}
.cookie-category label {
  flex: 1 1 auto;
  font-weight: 600;
  cursor: pointer;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 12px;
}
.cookie-modal-actions button {
  border-radius: 28px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid #EFC371;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 2rem;
  color: #24334A;
  background: transparent;
  border: none;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #EFC371;
}

/* ---------------------------------------------------
   RESPONSIVE
--------------------------------------------------- */
@media (max-width: 700px) {
  .container {
    padding: 0 9px;
  }
  .section {
    padding: 22px 4px;
    margin-bottom: 32px;
  }
  .footer-nav { gap: 12px; }
  .card, .testimonial-card { padding: 16px 10px; }
  .feature-list, .section ul { gap: 13px; }
  .brand-footer { font-size: 0.92rem; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1rem; }
}
@media (max-width: 500px) {
  .cookie-modal { padding: 18px 6vw; }
}

/* ---------------------------------------------------
   LUXURY & PREMIUM ACCENTS
--------------------------------------------------- */
hr {
  border: none;
  border-top: 2px solid #EFC371;
  margin: 34px 0;
}
section, .card, .testimonial-card {
  position: relative;
  overflow: hidden;
}
section:after, .card:after, .testimonial-card:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0; left: 0;
  width: 26%;
  height: 6px;
  background: #EFC371;
  opacity: 0.09;
  pointer-events: none;
  border-radius: 6px;
}
section:after { height: 4px; left: 5%; width: 90%; }
.card:after, .testimonial-card:after { width: 40%; height: 4px; left: 9%; }

/* Gold hover effect on cards */
.card:hover:after, .testimonial-card:hover:after {
  opacity: 0.19;
  filter: brightness(1.15);
}

/* ---------------------------------------------------
   DETAILS, QUOTES, BLOCKS
--------------------------------------------------- */
blockquote {
  border-left: 4px solid #EFC371;
  padding-left: 16px;
  color: #24334A;
  margin-bottom: 10px;
  font-style: italic;
  font-size: 1.04rem;
}

/* ---------------------------------------------------
   ACCESSIBILITY & FOCUS
--------------------------------------------------- */
a:focus, button:focus, .cta-button:focus, .secondary-link:focus {
  outline: 2px solid #EFC371;
  outline-offset: 2px;
}

::-webkit-scrollbar { width: 8px; background: #f5ede0; }
::-webkit-scrollbar-thumb { background: #EFC371; border-radius: 6px; }

/* ---------------------------------------------------
   UTILITY CLASSES
--------------------------------------------------- */
.d-flex { display: flex !important; }
.flex-column { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.align-center { align-items: center !important; }
.align-start { align-items: flex-start !important; }
.justify-between { justify-content: space-between !important; }
.gap-16 { gap: 16px !important; }
.gap-24 { gap: 24px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-32 { margin-top: 32px !important; }
section {
  padding: 20px 0;
}
/* END CSS */
