/* 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,
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.5;
  background: #153243; /* fallback */
  background: linear-gradient(120deg, #153243 60%, #254261 100%);
  color: #EBF5EE;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #F4A259; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #FFDC8D; text-decoration: underline; }
ul, ol { padding-left: 24px; margin-bottom: 16px; }
strong { font-weight: 700; }

/*================== FONTS ==================*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.25rem; line-height: 1.2; margin-bottom: 20px; }
h2 { font-size: 1.75rem; line-height: 1.3; margin-bottom: 18px; }
h3 { font-size: 1.25rem; line-height: 1.3; margin-bottom: 10px; }
h4, h5, h6 { margin-bottom: 8px; }
p, li, blockquote, label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #EBF5EE;
}
p { margin-bottom: 16px; }
blockquote {
  font-style: italic;
  border-left: 4px solid #F4A259;
  padding-left: 16px;
  color: #23282e;
  background: #EFF3F6;
  border-radius: 8px;
  margin: 0 0 10px 0;
}

/*================== GLOBAL LAYOUT ==================*/
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
}
body, .container, .content-wrapper, main, header, footer, section {
  box-sizing: border-box;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/*========== HEADER & NAVIGATION ==========*/
header {
  background: rgba(19,34,51,0.98);
  padding: 0;
  border-bottom: 1px solid #254261;
  box-shadow: 0 2px 16px 0 rgba(70,180,255,0.05);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
header img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
.main-nav a {
  padding: 8px 0;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #F4A259;
  letter-spacing: 0.03em;
  border-bottom: 2.5px solid transparent;
  transition: color 0.2s, border 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #FFDC8D;
  border-bottom: 2.5px solid #F4A259;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #F4A259;
  font-size: 2.3rem;
  cursor: pointer;
  padding: 6px 12px;
}

/*================ MOBILE NAV ================*/
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25,45,65,0.98);
  z-index: 1110;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #F4A259;
  font-size: 2.5rem;
  padding: 12px 20px 0 0;
  cursor: pointer;
  align-self: flex-end;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 20px;
  align-items: flex-start;
  gap: 16px;
  padding-left: 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #EBF5EE;
  padding: 10px 0 10px 0;
  width: 100%;
  transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F4A259;
  background: rgba(244,162,89,0.07);
}

/*================ HERO & CTA ================*/
.hero {
  background: linear-gradient(123deg, #153243 72%, #F4A259 100%);
  background-blend-mode: multiply;
  min-height: 340px;  
  padding: 50px 0 70px 0;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero h1 {
  color: #fff;
  font-size: 2.3rem;
}
.hero p {
  color: #EBF5EE;
  font-size: 1.2rem;
  margin-bottom: 32px;
}
.cta {
  background: #254261;
  border-radius: 18px;
  box-shadow: 0 4px 30px 0 rgba(35,157,255,0.08);
  margin-bottom: 40px;
  padding: 50px 15px;
  text-align: center;
}
.cta h2, .cta p { color: #fff; margin-bottom: 18px;}
.cta .cta-btn {
  display: inline-block;
  margin-top: 12px;
}

/*================ SECTION LAYOUTS ================*/
.features, .about, .legal, .services, .services-overview,
.events-list, .about-preview, .stories-list, .thank-you, .contact {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 28px;
  justify-content: flex-start;
  align-items: stretch;
}
.feature-item {
  background: #1c3442;
  border-radius: 14px;
  box-shadow: 0 2px 20px 0 rgba(36,50,67,0.07), 0 0 0 2px #1637572e;
  padding: 28px 22px;
  min-width: 230px;
  flex: 1 1 210px;
  max-width: 335px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.3s, transform 0.2s;
  position: relative;
  margin-bottom: 20px;
  border: 1.5px solid rgba(226,234,245,0.06);
}
.feature-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
  filter: drop-shadow(0 0 7px #F4A25979);
}
.feature-item h3 {
  color: #F4A259;
  font-size: 1.27rem;
}
.feature-item p {
  font-size: 1.01rem;
  color: #EBF5EE;
}
.feature-item:hover, .feature-item:focus-within {
  transform: translateY(-5px) scale(1.018);
  box-shadow: 0 8px 30px 0 #F4A25922, 0 2px 24px 0 rgba(70,180,255,0.12);
  border-color: #F4A259;
  z-index: 2;
}

.card-container {
  display: flex; flex-wrap: wrap; gap: 24px;
}
.card {
  margin-bottom: 20px; position: relative;
  background: #1d344d;
  border-radius: 16px;
  box-shadow: 0 2px 24px 0 rgba(30,195,255,0.06);
  padding: 26px 24px;
}
.card-content {
  display: flex; flex-direction: column; justify-content: center;
}
.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;
  margin-bottom: 20px;
  border-radius: 15px;
  background: #fff;
  color: #153243;
  box-shadow: 0 2px 24px 0 #14405e15, 0 2px 10px 0 #18375618;
  border: 1.5px solid #F4A25934;
}
.testimonial-card blockquote {
  background: none;
  color: #1b2943;
  border: none;
  padding: 0;
  margin-bottom: 0;
  font-size: 1.1rem;
  font-style: italic;
}
.testimonial-card div {
  font-family: 'Montserrat', sans-serif;
  color: #F4A259;
  font-size: 1rem;
}

.story-excerpt, .event-teaser {
  background: #1e3142;
  border-radius: 14px;
  padding: 22px 20px;
  margin-bottom: 24px;
  box-shadow: 0 2px 14px 0 #13274312;
}
.story-excerpt h3, .event-teaser h3 {
  color: #F4A259;
  margin-bottom: 8px;
}

.brand-story-snippet {
  color: #F4A259;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 18px;
}

.about-preview a {
  color: #F4A259;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.about-preview a:hover, .about-preview a:focus {
  color: #FFDC8D;
}

.contact-details {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.contact-details div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: #1f3545;
  border-radius: 15px;
  padding: 18px 20px;
  color: #F4A259;
  font-size: 1.02rem;
  min-width: 210px;
}
.contact-details img {
  width: 32px; height: 32px; margin-bottom: 8px;
  filter: drop-shadow(0 0 5px #F4A25990);
}

/*================ BUTTONS ================*/
.cta-btn, .btn, button, input[type='submit'], input[type='button'] {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: #F4A259;
  color: #153243;
  padding: 13px 36px;
  font-size: 1.13rem;
  border-radius: 32px;
  border: none;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 16px 0 #f4a25922;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.14s;
  margin-top: 8px;
  margin-bottom: 8px;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus, .btn:hover, .btn:focus, button:hover, button:focus, input[type='submit']:hover, input[type='submit']:focus {
  background: #FFD29E;
  color: #153243;
  box-shadow: 0 4px 28px 0 #F4A25949;
  transform: translateY(-2px) scale(1.035);
}

/*=============== FOOTER ================*/
footer {
  background: #153243;
  border-top: 1.5px solid #254261;
  padding: 36px 0 24px 0;
  color: #B5D0DE;
  font-size: 1rem;
  margin-top: 32px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
footer img {
  width: 52px;
  height: 52px;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 7px #F4A25980);
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #F4A259;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFDC8D;
}

/*=============== COOKIE CONSENT BANNER ================*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 2500;
  background: rgba(26,47,62,0.96);
  color: #fff;
  box-shadow: 0 -2px 32px 0 #27424f65;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 32px 26px 20px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 18px 18px 0 0;
  transition: transform 0.37s cubic-bezier(0.4,0.3,0.6,1.13), opacity 0.25s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0.5;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  background: #F4A259;
  color: #153243;
  border: none;
  padding: 9px 24px;
  margin: 0 4px;
  border-radius: 18px;
  font-family:'Montserrat',sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.16s;
}
.cookie-banner .cookie-btn.settings {
  background: #254261;
  color: #F4A259;
  border: 2px solid #F4A259;
  margin-left: 6px;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #FFD29E;
  color: #153243;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: #153243;
  color: #F4A259;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 3001;
  background: rgba(19,28,39,0.86);
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadein 0.26s;
}
.cookie-modal-overlay.active {
  display: flex;
}
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: #1e3142;
  border-radius: 20px;
  max-width: 410px;
  width: 94vw;
  padding: 36px 24px 24px 24px;
  color: #EBF5EE;
  box-shadow: 0 2px 34px 0 #f4a25940;
  position: relative;
  animation: modalfadein 0.24s;
}
@keyframes modalfadein { from { transform: scale(.93); opacity:0; } to {transform:scale(1); opacity:1;}}
.cookie-modal h2 {
  color: #F4A259;
  text-align: left;
  margin-bottom: 18px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}
.cookie-modal .cookie-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid #27415b;
}
.cookie-modal .cookie-category-row:last-child {
  border-bottom: none;
}
.cookie-modal .toggle {
  width: 38px;
  height: 22px;
  background: #2F4156;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
  display: inline-block;
}
.cookie-modal .toggle input[type=checkbox] {
  display: none;
}
.cookie-modal .toggle .slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #FFD29E;
  border-radius: 50%;
  transition: left 0.18s;
}
.cookie-modal .toggle input[type=checkbox]:checked+.slider {
  background: #F4A259;
  left: 20px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .cookie-btn {
  background: #F4A259;
  color: #153243;
  border: none;
  border-radius: 16px;
  padding: 8px 22px;
  font-family:'Montserrat',sans-serif;
  font-weight:700;
  font-size:1rem;
  cursor:pointer;
  margin:0;
  transition: background 0.18s;
}
.cookie-modal .cookie-btn.cancel {
  background: #1e3142;
  color: #F4A259;
  border: 1.5px solid #F4A259;
}
.cookie-modal .cookie-btn.cancel:hover {
  background: #153243;
}
.cookie-modal .cookie-btn:hover, .cookie-modal .cookie-btn:focus {
  background: #FFD29E;
  color: #153243;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: #F4A259;
  font-size: 1.5rem;
  cursor: pointer;
}
.cookie-modal .cookie-close:hover { color: #FFD29E; }

/*=============== GENERAL ANIMATIONS ================*/
body, .feature-item, .cta-btn, .mobile-menu, .cookie-banner, .cookie-modal {
  transition: all 0.23s cubic-bezier(.82,.07,.61,.97);
}

/*=============== RESPONSIVE DESIGN ===============*/
@media (max-width: 1050px) {
  .feature-grid {
    gap: 16px;
  }
}
@media (max-width: 950px) {
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .features .content-wrapper, .about .content-wrapper, .legal .content-wrapper {
    max-width: 100%;
  }
}
@media (max-width: 880px) {
  .main-nav { gap: 22px;}
  .footer-nav { gap: 10px;}
  .container { padding-left: 10px; padding-right: 10px; }
}
@media (max-width: 768px) {
  .container { padding-left: 5vw; padding-right: 5vw; }
  header .container {
    flex-direction: row;
    gap: 10px;
    height: 60px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 8px;
  }
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    gap: 10px;
  }
  .contact-details {
    flex-direction: column;
    gap: 15px;
  }
  .hero .container,
  .cta .container { align-items: flex-start; }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .cookie-banner { flex-direction: column; gap: 15px; align-items: flex-start; }
}
@media (max-width: 540px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.25rem; }
  .feature-item h3, .event-teaser h3, .story-excerpt h3 { font-size: 1.11rem; }
  .cookie-banner { font-size: 0.97rem; padding: 18px 8px; }
  .cookie-modal { padding: 20px 7vw 18px 7vw; }
}
@media (max-width: 400px) {
  .cookie-banner { font-size: 0.93rem; padding: 8px 2vw; }
}

/* ============== ACCESSIBILITY ============== */
:focus { outline: 2px solid #F4A259; outline-offset: 2px; }
::selection { background: #F4A259; color: #153243; }

/* ============== UTILITIES ============== */
.hide { display: none!important; }
.relative { position: relative; }

/* ============== FORM & INPUTS (if forms used) ============== */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 10px;
  border: 1.5px solid #254261;
  padding: 12px 14px;
  background: #21384f;
  color: #F4A259;
  margin-bottom: 12px;
  box-shadow: 0 1px 6px 0 #15324319;
  transition: border 0.14s, box-shadow 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #F4A259;
  outline: none;
  box-shadow: 0 2px 12px #F4A25928;
}
label {
  font-size: 1rem;
  font-weight: 500;
  color: #F4A259;
  margin-bottom: 6px;
}

/* ============== PRINT ============== */
@media print {
  .mobile-menu, .cookie-banner, .cookie-modal-overlay, .mobile-menu-toggle { display: none!important; }
}
