/* ==== CSS RESET & NORMALIZE ==== */
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,
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 {
  height: 100%;
  background: #10161e;
}
body {
  min-height: 100vh;
  background: #181c22;
  color: #F6F2EC;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #B5A57A;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover,
a:focus {
  color: #F6F2EC;
  outline: none;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}

/* ==== BRAND FONTS ==== */
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Merriweather:700,900&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', 'Georgia', serif;
  font-weight: 700;
  color: #B5A57A;
  letter-spacing: 0.015em;
  line-height: 1.2;
}
h1 { font-size: 2.75rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.38rem; margin-bottom: 16px; }
h4 { font-size: 1.1rem; }

@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1rem; }
}

p, ul, ol, li, blockquote, address, dt, dd {
  color: #F6F2EC;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
}
strong { color: #F6F2EC; font-weight: 700; }
em { color: #B5A57A; font-style: italic; }

/* ==== LAYOUT CONTAINERS ==== */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(17,24,31,0.85);
  border-radius: 16px;
  box-shadow: 0 6px 32px 0 rgba(27, 30, 38, 0.15), 0 1.5px 1px 0 #232a2e inset;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 32px;
    padding: 24px 8px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #222733;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(20,20,26,0.12);
  padding: 24px 20px;
  min-width: 240px;
  color: #F6F2EC;
  transition: box-shadow .25s, transform .25s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 #0e131b, 0 3px 24px #63656939;
  transform: translateY(-4px) scale(1.015);
  z-index: 2;
}

.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;
}
@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    align-items: stretch;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #F6F2EC;
  color: #22262B;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(35, 45, 64, 0.09);
  margin-bottom: 20px;
  min-width: 220px;
  transition: box-shadow 0.23s, transform .16s;
}
.testimonial-card strong { color: #173259; }
.testimonial-card:hover {
  box-shadow: 0 6px 18px #b5a57a44, 0 4px 16px #31323511;
  transform: translateY(-2px) scale(1.01);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== HEADER & NAVIGATION ==== */
header {
  background: #15181f;
  padding: 0;
  box-shadow: 0 4px 32px #0e162321, 0 1.5px 2px #1732590f inset;
  z-index: 100;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: #B5A57A;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.26s, color 0.23s;
}
header nav a:hover,
header nav a:focus {
  background: #173259;
  color: #F6F2EC;
}
header .cta.primary {
  margin-left: 16px;
}
/* Logo */
header img,
.footer-brand img {
  height: 46px;
  width: auto;
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
  header nav,
  header .cta.primary {
    display: none !important;
  }
}

/* ========= CTA BUTTONS ========= */
.cta,
.cta.primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #B5A57A;
  color: #173259;
  border-radius: 8px;
  border: none;
  padding: 12px 28px;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.09rem;
  margin-top: 10px;
  box-shadow: 0 3px 17px #161B22b0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.20s, color 0.17s, transform .18s, box-shadow .21s;
}
.cta.primary:hover, .cta.primary:focus {
  background: #222c3f;
  color: #B5A57A;
  transform: scale(1.025);
  box-shadow: 0 8px 16px #b5a57a33, 0 2px 7px #222c3f22;
}
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
}

/* ==== HERO SECTIONS ==== */
.hero {
  margin-bottom: 60px;
  padding: 60px 0 40px 0;
  background: linear-gradient(130deg, #181c22 70%, #2b3342 100%);
  border-bottom: 2px solid #173259;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.7rem;
  color: #B5A57A;
  margin-bottom: 14px;
  text-shadow: 0 2px 10px #24272766;
}
.hero p {
  font-size: 1.17rem;
  color: #F6F2EC;
  margin-bottom: 20px;
  max-width: 700px;
}
@media (max-width: 768px) {
  .hero {
    padding: 38px 0 22px 0;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero p {
    font-size: 1.01rem;
  }
}

/* ==== FEATURES/INFOGRAPHIC/STORY GRIDS ==== */
.features .content-wrapper ul,
.stories .content-wrapper ul,
.about-home ul,
.about .content-wrapper ul,
.highlights .content-wrapper ul,
.profiles .content-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.features .content-wrapper ul li, .about-home ul li,
.about .content-wrapper ul li,
.highlights .content-wrapper ul li,
.stories .content-wrapper ul li,
.profiles .content-wrapper ul li {
  background: #212837;
  border-radius: 10px;
  box-shadow: 0 2px 12px #181c228e;
  padding: 22px 18px;
  min-width: 230px;
  flex: 1 1 210px;
  transition: box-shadow 0.2s, transform 0.18s;
  color: #B5A57A;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
}
.features .content-wrapper ul li:hover,
.highlights .content-wrapper ul li:hover {
  box-shadow: 0 4px 22px #b5a57a38, 0 2px 10px #232a2e21;
  transform: translateY(-2px) scale(1.01);
}
.features .content-wrapper ul li img,
.about .content-wrapper ul li img,
.highlights .content-wrapper ul li img {
  height: 40px;
  width: 40px;
  margin-bottom: 8px;
  filter: grayscale(85%) contrast(1.6);
}
.features .infographic ul {
  gap: 20px;
}

blockquote {
  color: #B5A57A;
  background: #212733;
  border-left: 6px solid #B5A57A;
  margin: 24px 0;
  padding: 18px 30px 14px 18px;
  font-family: 'Merriweather', serif;
  font-size: 1.12rem;
  font-style: italic;
  border-radius: 8px;
  box-shadow: 0 2px 12px #151d240a;
}

@media (max-width: 768px) {
  .features .content-wrapper ul, .about-home ul,
  .about .content-wrapper ul,
  .stories .content-wrapper ul,
  .highlights .content-wrapper ul,
  .profiles .content-wrapper ul {
    flex-direction: column;
    gap: 16px;
  }
}

/* ==== HIGHLIGHTS SECTION ==== */
.highlights .quick-links {
  margin-top: 18px;
  color: #F6F2EC;
  font-size: 1rem;
}
.highlights .quick-links a {
  color: #B5A57A;
  font-weight: 700;
  margin: 0 5px;
  text-decoration: underline dotted #B5A57A 1.5px;
  transition: color 0.2s;
}
.highlights .quick-links a:hover { color: #F6F2EC; }

/* ==== CARD COLLECTIONS ==== */
.card-grid,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  margin-bottom: 20px;
  background: #232b37;
}

/* ==== TESTIMONIALS SECTION ==== */
.testimonials .container {
  padding-bottom: 16px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.testimonials h2 {
  color: #B5A57A;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

/* ==== LEGAL PAGE SECTIONS ==== */
.legal {
  margin-bottom: 60px;
  padding: 38px 16px 50px 16px;
  background: #1a1920;
  border-radius: 16px;
  box-shadow: 0 4px 16px #48506816;
}
.legal h1, .legal h2 {
  color: #B5A57A;
}
.legal ul, .legal address {
  margin-bottom: 15px;
}

/* ==== CTA SECTION ==== */
.cta {
  background: linear-gradient(110deg, #212837 70%, #173259 110%);
  box-shadow: 0 2px 12px #17325920;
  border-radius: 16px;
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ==== MAP/CONTACT SECTION ==== */
.contact ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.contact ul li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact ul img {
  filter: brightness(0.8) invert(0.3) grayscale(60%) contrast(1.3);
  height: 22px;
  width: 22px;
}

/* ==== PROFILE SECTION ===== */
.profiles dl {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.profiles dt {
  font-weight: bold;
  color: #B5A57A;
  margin-bottom: 5px;
}
.profiles dd {
  color: #F6F2EC;
  margin-left: 0;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .profiles dl {
    flex-direction: column;
    gap: 12px;
  }
}

/* ==== FOOTER ==== */
footer {
  background: #13171c;
  color: #B5A57A;
  padding: 32px 0 20px 0;
  font-size: 0.98rem;
  margin-top: 50px;
  border-top: 2px solid #173259;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  font-size: 0.96rem;
}
.footer-nav a {
  color: #B5A57A;
  font-weight: 600;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin: 0 2px 0 0;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand em {
  color: #B5A57A;
  font-style: italic;
  font-size: 1rem;
  margin-left: 6px;
}
@media (max-width: 600px) {
  footer .container {
    gap: 12px;
  }
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==== MOBILE MENU ==== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 18px;
  z-index: 190;
  background: #B5A57A;
  color: #173259;
  border-radius: 10px;
  padding: 9px 16px;
  font-size: 2.1rem;
  box-shadow: 0 3px 19px #080a0f20;
  border: 2px solid #B5A57A;
  transition: background 0.23s, color 0.17s;
}
	.mobile-menu-toggle:active,
	.mobile-menu-toggle:focus {
	  background: #232b37;
	  color: #B5A57A;
	}
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(17,24,31,0.98);
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 0.32s, transform 0.39s cubic-bezier(.63,.04,.41,1.03) 0s;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  color: #B5A57A;
  background: none;
  font-size: 2.3rem;
  padding: 12px 16px;
  align-self: flex-end;
  margin-top: 20px;
  margin-right: 15px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 2px 10px #222c3f38;
  transition: background 0.18s;
}
.mobile-menu-close:hover {
  background: #222b37;
  color: #F6F2EC;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 40px 32px 0 32px;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-family: 'Merriweather', serif;
  color: #B5A57A;
  padding: 14px 4px;
  border-left: 5px solid transparent;
  border-radius: 0 9px 9px 0;
  transition: background 0.2s, color 0.2s, border-color 0.18s;
}
.mobile-nav a:hover {
  background: #212a36;
  color: #F6F2EC;
  border-left: 5px solid #B5A57A;
}

@media (min-width: 900px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 500;
  background: transparent;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
}
.cookie-banner.active {
  pointer-events: auto;
  opacity: 1;
}
.cookie-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  background: #222733;
  color: #F6F2EC;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -2px 24px #3131342c, 0 1.5px 16px #b5a57a23 inset;
  padding: 28px 24px 20px 24px;
  max-width: 97vw;
  margin-bottom: 0;
}
.cookie-banner-inner p {
  color: #F6F2EC;
  font-size: 1rem;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}
.cookie-btn {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 6px;
  padding: 11px 21px;
  border: 2px solid #B5A57A;
  background: #173259;
  color: #B5A57A;
  transition: background 0.19s, color 0.19s, box-shadow .19s, border .17s;
  box-shadow: 0 1.5px 9px #151a225c;
  margin-right: 2px;
}
.cookie-btn.accept {
  background: #B5A57A;
  color: #173259;
}
.cookie-btn.accept:hover {
  background: #F6F2EC;
  color: #173259;
}
.cookie-btn.reject {
  background: #232b37;
  color: #B5A57A;
  border-color: #B5A57A;
}
.cookie-btn.reject:hover {
  background: #B5A57A;
  color: #222733;
}
.cookie-btn.settings {
  background: none;
  color: #B5A57A;
  border-color: #173259;
}
.cookie-btn.settings:hover {
  background: #173259;
  color: #F6F2EC;
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 501;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(17,24,31,0.93);
  opacity: 0;
  pointer-events: none;
  transition: opacity .21s;
}
.cookie-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0.98);
  max-width: 96vw;
  width: 370px;
  z-index: 502;
  background: #212733;
  border-radius: 16px;
  box-shadow: 0 8px 40px #22201155;
  padding: 34px 25px 24px 25px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s, transform .32s;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h3 {
  color: #B5A57A;
  font-size: 1.13rem;
  margin-bottom: 8px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #F6F2EC;
  margin-bottom: 9px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #B5A57A;
  width: 19px;
  height: 19px;
  border: 1.5px solid #B5A57A;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}
.cookie-modal .cookie-btn {
  margin-top: 16px;
  width: 100%;
  padding: 11px 0;
}
.cookie-modal .cookie-btn:last-child {
  margin-bottom: 0;
}

/* ==== GENERAL INTERACTIONS & EFFECTS ==== */
a,
button,
.cta,
.cta.primary,
.cookie-btn,
.mobile-menu-toggle,
.mobile-menu-close,
.mobile-nav a {
  transition: color 0.22s, background 0.22s, box-shadow .17s, border .18s, transform .19s;
}

*:focus-visible {
  outline: 2px dotted #B5A57A;
  outline-offset: 2px;
}

/* ==== SPACING & WHITE SPACE ==== */
main {
  margin-top: 0;
  margin-bottom: 30px;
}
section { margin-bottom: 60px; padding: 40px 20px; }
@media (max-width: 768px) {
  section {
    margin-bottom: 35px;
    padding: 28px 8px;
  }
}

/* ==== RESPONSIVE BREAKPOINTS ==== */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 6px;
  }
}

/* ==== OVERRIDES & UTILITIES ==== */
.quick-links,
.cta-group, .footer-contact, .footer-nav {
  gap: 12px;
}

/* ==== HIDE SCROLLBAR ON MENU ==== */
.mobile-menu,
.cookie-modal {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.mobile-menu::-webkit-scrollbar,
.cookie-modal::-webkit-scrollbar {
  display: none;
}
