/* CSS RESET & BASE SETUP */
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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  margin: 0;
  padding: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F8F7F4;
  color: #222;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 16px;
}

/* Import Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Source+Sans+Pro:wght@400;600&display=swap');

:root {
  --primary: #1B264F;
  --secondary: #7AB8BF;
  --gold: #C9AB62;
  --accent: #F2E9E1;
  --bg-light: #F8F7F4;
  --text: #222327;
  --text-on-dark: #fff;
  --cta-hover: #22294A;
  --shadow: 0 4px 20px 0 rgba(40,32,16,0.07);
  --radius: 14px;
  --border: 1px solid #e0ded9;
}

/* CONTAINER AND LAYOUT STRUCTURE */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  max-width: 780px;
}

/* SECTION SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}

/* HEADINGS & TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0;-webkit-font-smoothing: antialiased;
}
h1 {
  font-size: 2.7rem;
  line-height: 1.18;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}
.subtitle {
  font-size: 1.15rem;
  color: var(--secondary);
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 18px;
}
p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--text);
}
strong {
  font-weight: bold;
}
small {
  font-size: 0.89em;
  line-height: 1.5;
  color: #5a5a5a;
}

/* LINK STYLES */
a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.18s;
}
a:hover,
a:focus {
  color: var(--gold);
}

/* HEADER & NAVIGATION */
header {
  background: var(--bg-light);
  border-bottom: 1px solid #ecebe3;
  box-shadow: 0 2px 10px 0 rgba(215, 203, 170, 0.03);
  position: relative;
  z-index: 50;
}
header .container {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
header img {
  height: 48px;
  display: block;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .02em;
  color: var(--primary);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s, color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}

.cta-btn {
  background: var(--primary);
  color: var(--text-on-dark);
  padding: 13px 32px;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 32px;
  letter-spacing: .04em;
  transition: background 0.21s cubic-bezier(.28,.1,.24,1), box-shadow 0.21s, color 0.16s;
  border: none;
  box-shadow: 0 2px 16px 0 rgba(27,38,79,0.10);
  cursor: pointer;
  position: relative;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--gold);
  color: var(--primary);
  box-shadow: 0 6px 20px 0 rgba(27,38,79,0.18);
  outline: none;
}

/* BURGER MENU (MOBILE) */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 20px;
  width: 46px;
  height: 46px;
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 12px;
  color: var(--primary);
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  z-index: 130;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: border 0.2s, color 0.18s, background .2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28, 31, 51, 0.97);
  box-shadow: 0 0 80px 0 rgba(40,32,16,0.23);
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.41s cubic-bezier(.48,.02,.16,1.00), opacity 0.25s;
  z-index: 120;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 26px 24px 0 0;
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 2.35rem;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  margin: 36px 32px 0 36px;
}
.mobile-nav a {
  color: var(--gold);
  font-family: 'Merriweather', serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: color 0.2s;
  padding: 8px 0;
  border-radius: 8px;
  background: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #fff;
  background: rgba(201,171,98,.20);
}

/* MAIN & FLEXBOX-BASED CONTENT LAYOUTS */
main {
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: var(--border);
  min-width: 260px;
}
.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;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 6px 36px 0 rgba(31,39,80,.08);
  margin-bottom: 20px;
  border-left: 5px solid var(--gold);
  min-width: 240px;
  max-width: 600px;
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #26232e;
  margin-bottom: 0;
  font-family: 'Source Sans Pro', Arial, sans-serif;
}
.testimonial-card strong {
  font-family: 'Merriweather', serif;
  color: var(--primary);
  font-size: 1rem;
  margin-left: 12px;
}
.feature-list, .service-list, .faq-list {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.feature-list li, .service-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 20px 18px 18px 18px;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px 0 rgba(42,31,16,0.06);
  min-width: 220px;
  flex: 1 1 265px;
  margin-bottom: 20px;
  border: var(--border);
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 1.07rem;
}
.feature-list li img, .service-list li img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  filter: drop-shadow(0 1px 2px rgba(232,206,100,0.11));
}
.faq-list {
  list-style: none;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}
.faq-list li {
  background: #fff;
  padding: 18px 18px;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px 0 rgba(42,31,16,0.06);
  border-left: 4px solid var(--secondary);
  font-size: 1.02rem;
  color: var(--primary);
  font-family: 'Source Sans Pro', Arial, sans-serif;
}

/* FOOTER */
footer {
  background: #222A44;
  color: #fff;
  padding: 45px 0 0 0;
}
footer .container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 38px;
  padding-bottom: 30px;
}
footer img {
  height: 36px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a {
  color: #f2e9e1;
  font-size: 1rem;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  transition: color 0.17s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--gold);
}
.footer-info {
  max-width: 270px;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 0.98em;
  color: #eae5dc;
}
.footer-info a {
  color: var(--gold);
  text-decoration: underline;
  font-weight: 600;
}

.footer-info p{
	color: #fff
}

/* BUTTONS */
button, .btn {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  border-radius: 24px;
  background: var(--gold);
  border: none;
  color: var(--primary);
  padding: 10px 28px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(201,171,98,0.10);
  transition: background 0.19s, color 0.13s, box-shadow 0.15s;
}
button:hover, button:focus, .btn:hover, .btn:focus {
  background: var(--primary);
  color: var(--gold);
  box-shadow: 0 6px 24px 0 rgba(27,38,79,0.15);
  outline: none;
}

/* LIST SPACING & CONTENT CARDS */
ul, ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
ul li {
  margin-bottom: 12px;
}

/* MODALS, BANNERS, MICRO-INTERACTIONS */

/* ------------------------ */
/* COOKIE CONSENT BANNER    */
/* ------------------------ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  box-shadow: 0 -2px 28px 0 rgba(34,42,68,0.09);
  border-top: 1px solid #e4dfd5;
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  justify-content: center;
  z-index: 200;
  transition: transform .41s cubic-bezier(.48,.02,.16,1.00), opacity 0.20s;
}
.cookie-banner.hide {
  transform: translateY(130%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-content {
  max-width: 540px;
  color: #232323;
  font-size: 1rem;
  font-family: 'Source Sans Pro', Arial, sans-serif;
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
}
.cookie-banner .btn {
  background: var(--gold);
  color: var(--primary);
  font-family: 'Merriweather', serif;
  padding: 10px 24px;
  font-size: 1rem;
  box-shadow: none;
  border-radius: 24px;
}
.cookie-banner .btn:hover {
  background: var(--primary);
  color: var(--gold);
  outline: none;
}
.cookie-settings-modal {
  display: none;
  position: fixed;
  left: 0; right:0; top:0; bottom:0;
  z-index: 300;
  background: rgba(34,42,68,0.55);
  align-items: center;
  justify-content: center;
  transition: opacity .17s;
  opacity: 1;
}
.cookie-settings-modal.open {
  display: flex;
}
.cookie-modal-box {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 44px 0 rgba(42,41,16,0.18);
  padding: 36px 32px 28px 32px;
  max-width: 440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: scale-in .25s cubic-bezier(.58,1,.1,1.1);
}
@keyframes scale-in {
  from { transform: scale(.84); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal-header {
  font-family: 'Merriweather', serif;
  color: var(--primary);
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.cookie-modal-close {
  position: absolute;
  right: 28px;
  top: 22px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--gold);
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: var(--primary);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.06rem;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  margin: 10px 0;
}
.cookie-category input[type="checkbox"],
.cookie-category input[type="radio"] {
  accent-color: var(--gold);
  width: 20px;
  height: 20px;
}
.cookie-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 18px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .container {
    max-width: 94vw;
  }
}
@media (max-width: 900px) {
  .footer-info {
    font-size: 0.91em;
    max-width: 210px;
  }
  footer .content-wrapper {
    gap: 22px;
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    height: auto;
    min-height: 64px;
    align-items: flex-start;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    font-size: 1.003rem;
    padding: 11px 22px;
    margin-right: 2px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  section, .section {
    padding: 28px 0;
    margin-bottom: 38px;
  }
  .feature-list, .service-list {
    gap: 14px;
  }
  .card-container, .card-grid, .content-grid {
    gap: 12px;
  }
  .testimonial-card, .feature-list li, .faq-list li {
    min-width: 160px;
    max-width: 100%;
    font-size: 0.98rem;
  }
  .footer-nav {
    gap: 7px;
  }
  .content-wrapper {
    padding: 0;
    gap: 12px;
    font-size: 1rem;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  footer .content-wrapper {
    flex-direction: column;
    padding-bottom: 24px;
    gap: 12px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 6px 15px 6px;
  }
  .cookie-banner-content {
    font-size: .96em;
  }
  .cookie-modal-box {
    padding: 20px 10px 18px 12px;
    max-width: 99vw;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.65rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  .feature-list, .service-list {
    gap: 6px;
  }
  .feature-list li, .service-list li, .card {
    min-width: 90px;
    font-size: 0.91rem;
    padding: 14px 7px;
  }
}
@media (max-width: 400px) {
  .container {
    padding: 0 4px;
  }
}

/* MICRO-INTERACTIONS */
.cta-btn, .btn, button {
  transition: background 0.17s, color 0.13s, box-shadow 0.19s;
}
.cta-btn:active, .btn:active, button:active {
  background: var(--secondary);
  color: var(--primary);
}
.card, .feature-list li, .testimonial-card, .faq-list li {
  transition: box-shadow 0.23s, border 0.13s;
}
.card:hover, .feature-list li:hover, .testimonial-card:hover, .faq-list li:hover {
  box-shadow: 0 6px 28px 0 rgba(31,39,80,.13);
  border-color: var(--gold);
}
.testimonial-card:focus-within {
  outline: 2px solid var(--gold);
}

/* UTILITY CLASSES */
.gold-text { color: var(--gold); }
.flex-center { display: flex; justify-content: center; align-items: center; }
.text-primary { color: var(--primary); }

/* Z-INDEX FIXES */
header, .mobile-menu { z-index: 100; }
.mobile-menu-toggle { z-index: 130; }
.cookie-banner { z-index: 200; }
.cookie-settings-modal { z-index: 300; }

/* ACCESSIBILITY OUTLINE FOR TABBING */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

::-webkit-scrollbar {
  width: 8px;
  background: #ebe4d6;
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

/* END OF CSS */
