/* --- 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, 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: #F9F8F6;
  color: #182D47;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
}
img, svg {
  max-width: 100%;
  display: block;
  vertical-align: middle;
}
a {
  color: #182D47;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D4A373;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.5em;
  margin: 16px 0;
}
li+li {
  margin-top: 8px;
}
button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
}
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* --- BRAND FONTS --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Lato', Arial, sans-serif;
  letter-spacing: 0.8px;
  color: #182D47;
}
h1 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.section h2 {
  font-size: 2.1rem;
  margin-bottom: 20px;
}
p, ul, ol {
  font-size: 1rem;
}
.subheadline {
  color: #D4A373;
  font-size: 1.3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 22px;
  box-shadow: 0 3px 24px 0 rgba(24,45,71,0.05);
  transition: box-shadow 0.25s;
}
.section:hover {
  box-shadow: 0 6px 36px 0 rgba(24,45,71,0.09);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 4px 20px 0 rgba(212,163,115,0.10);
  padding: 32px 24px;
  min-width: 240px;
  transition: box-shadow 0.25s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 10px 32px 0 rgba(212,163,115,0.17);
  transform: translateY(-4px) scale(1.015);
}

.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;
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0 2px 16px 0 rgba(24,45,71,0.11);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(24,45,71,0.21);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card blockquote {
  font-family: 'Montserrat',sans-serif;
  font-style: italic;
  color: #182D47;
  background: #F6F2EE;
  padding: 12px 20px;
  border-left: 4px solid #D4A373;
  border-radius: 10px;
  margin-right: 12px;
  font-size: 1.04rem;
}
.testimonial-author {
  color: #182D47;
  font-weight: 700;
  font-family: 'Lato',sans-serif;
}

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

/* --- HERO STYLES --- */
.hero {
  background: #D4A373;
  background: linear-gradient(120deg,#D4A373 70%, #FFD5C2 100%);
  color: #182D47;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 9px 40px 0 rgba(212,163,115,0.12);
  margin-bottom: 40px;
  padding: 50px 0 60px 0;
  position: relative;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1, .hero h2 {
  color: #182D47;
}
.hero .cta.primary {
  margin-top: 30px;
}

/* --- BUTTONS & CTA --- */
.cta, .cta.primary {
  font-family: 'Montserrat', sans-serif;
  display: inline-block;
  background: #182D47;
  color: #FFF;
  padding: 14px 34px;
  font-size: 1.12rem;
  font-weight: 700;
  border: none;
  border-radius: 34px;
  box-shadow: 0 2px 10px 1px rgba(24,45,71,0.15);
  letter-spacing: 1.1px;
  text-transform: uppercase;
  transition: background 0.22s, color 0.22s, box-shadow 0.19s, transform 0.17s;
  cursor: pointer;
  margin-top: 18px;
}
.cta.primary:hover, .cta.primary:focus {
  background: #D4A373;
  color: #182D47;
  box-shadow: 0 4px 26px 0 rgba(212,163,115,0.19);
  transform: translateY(-2px) scale(1.03);
}

/* --- NAVIGATION --- */
.main-navigation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  justify-content: flex-start;
  padding: 18px 0;
}
.main-navigation a {
  font-family: 'Montserrat', sans-serif;
  padding: 7px 22px;
  font-size: 1rem;
  border-radius: 28px;
  transition: background 0.14s, color 0.17s;
}
.main-navigation a.cta {
  background: #D4A373;
  color: #182D47 !important;
  font-weight: 700;
  box-shadow: 0 2px 8px 1px rgba(212,163,115,0.14);
}
.main-navigation a.cta:hover, .main-navigation a.cta:focus {
  background: #182D47;
  color: #FFF !important;
}
.main-navigation a:hover, .main-navigation a:focus {
  background: #FFD5C2;
  color: #182D47;
}
.main-navigation img {
  height: 40px;
  margin-right: 12px;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 20px;
  z-index: 1202;
  font-size: 2.1rem;
  background: #FFD5C2;
  color: #182D47;
  padding: 8px 14px;
  border-radius: 16px;
  border: none;
  box-shadow: 0 2px 18px 0 rgba(24,45,71,0.10);
  transition: background 0.17s, color 0.19s;
}
.mobile-menu-toggle:active {
  background: #D4A373;
  color: #FFF;
}
.mobile-menu {
  display: flex;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,45,71,0.98);
  z-index: 1250;
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.26s, transform 0.31s;
  flex-direction: column;
}
.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 25px;
  right: 24px;
  font-size: 2.2rem;
  background: #FFD5C2;
  color: #182D47;
  border-radius: 12px;
  border: none;
  z-index: 9999;
  padding: 7px 18px;
  box-shadow: 0 3px 24px 0 rgba(212,163,115,0.11);
  cursor: pointer;
  transition: background 0.19s, color 0.17s;
}
.mobile-menu-close:active {
  background: #D4A373;
  color: #FFF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin: 88px 0 0 38px;
}
.mobile-nav a {
  color: #FFF;
  background: none;
  font-size: 1.28rem;
  font-family: 'Montserrat',sans-serif;
  padding: 14px 0px 14px 18px;
  border-radius: 14px 0 0 14px;
  transition: background 0.16s, color 0.16s;
  width: 90vw;
  max-width: 310px;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #D4A373;
  color: #182D47;
}

@media (max-width: 1023px) {
  .main-navigation {
    gap: 7px;
  }
}
@media (max-width: 900px) {
  .main-navigation a {
    padding: 7px 10px;
    font-size: 0.98rem;
  }
}
@media (max-width: 768px) {
  .main-navigation {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding: 0 8px;
  }
  .hero {
    padding: 30px 0 40px 0;
    border-radius: 0 0 20px 20px;
    margin-bottom: 25px;
  }
  .section, .card {
    padding: 20px 10px;
    border-radius: 14px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  h1 {
    font-size: 2rem;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 1.28rem;
    margin-bottom: 10px;
  }
  .cta, .cta.primary {
    padding: 12px 20px;
    font-size: 1rem;
    margin-top: 10px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
    gap: 10px;
    margin-bottom: 14px;
  }
  .card-container, .content-grid {
    gap: 10px;
  }
}

/* --- FOOTER --- */
footer {
  background: #182D47;
  color: #FFF;
  padding: 60px 0 16px 0;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -9px 32px 0 rgba(24,45,71,0.09);
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-branding {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 310px;
}
.footer-branding img {
  max-height: 52px;
  margin-bottom: 8px;
}
.footer-branding .tagline {
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  color: #D4A373;
  font-weight: 700;
}
.footer-branding .short-description {
  font-size: 0.97rem;
  margin-bottom: 7px;
  font-family: 'Lato',sans-serif;
  color: #FFD5C2;
}
.footer-links {
  display: flex;
  flex-direction: row;
  gap: 38px;
  min-width: 240px;
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-links a {
  color: #FFD5C2;
  font-size: 0.98rem;
  transition: color 0.18s;
}
.footer-links a:hover {
  color: #D4A373;
  text-decoration: underline;
}
.footer-legal{
  font-size: 0.96rem;
  margin-top: 8px;
  color: #FFD5C2 !important;
  width: 100%;
}
.footer-legal a{
  color: #FFD5C2 !important;
}
.footer-contact {
  margin-top: 14px;
  font-size: 0.98rem;
  color: #FFD5C2;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact img {
  height: 16px;
  width: 16px;
  margin-right: 6px;
  vertical-align: middle;
  display: inline;
}
@media (max-width: 900px) {
  footer .container {
    gap: 18px;
    flex-direction: column;
    align-items: stretch;
    padding: 0 8px;
  }
  .footer-branding,
  .footer-contact {
    max-width: 100%;
  }
  .footer-links {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  footer {
    border-radius: 16px 16px 0 0;
    padding: 36px 0 8px 0;
    margin-top: 30px;
  }
  .footer-links {
    flex-direction: column;
    gap: 7px;
    min-width: 100px;
  }
  .footer-legal, .footer-contact {
    font-size: 0.92rem;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #182D47;
  color: #FFF;
  padding: 20px 18px 18px 18px;
  z-index: 1700;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -2px 20px 0 rgba(24,45,71,0.18);
  border-radius: 14px 14px 0 0;
  gap: 24px;
  transition: transform 0.39s cubic-bezier(.67,-0.01,.26,1.16), opacity 0.19s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-msg {
  font-size: 1.02rem;
  font-family: 'Lato',sans-serif;
  margin-right: 24px;
  flex: 1 1 auto;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  padding: 9px 22px;
  border-radius: 18px;
  font-size: 1rem;
  font-family: 'Montserrat',sans-serif;
  border: none;
  background: #FFD5C2;
  color: #182D47;
  font-weight: 700;
  margin-left: 0;
  transition: background 0.18s, color 0.19s, box-shadow 0.17s;
  box-shadow: 0 2px 7px 0 rgba(212,163,115,0.12);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #D4A373;
  color: #FFF;
}
.cookie-banner button.cookie-settings {
  background: #182D47;
  color: #FFD5C2;
  border: 2px solid #FFD5C2;
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: #FFD5C2;
  color: #182D47;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 7px 10px 7px;
  }
  .cookie-banner .cookie-msg {
    margin-right: 0;
  }
  .cookie-banner .cookie-buttons {
    gap: 7px;
  }
}

/* --- COOKIE MODAL POPUP --- */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,45,71,0.85);
  z-index: 1900;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal.open {
  display: flex;
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal .cookie-modal-content {
  background: #FFF;
  color: #182D47;
  border-radius: 18px;
  padding: 32px 28px 22px 28px;
  max-width: 390px;
  min-width: 260px;
  box-shadow: 0 0 30px 0 rgba(24,45,71,0.12);
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 20px;
  animation: cookieModalBounceIn 0.45s cubic-bezier(.8,-0.4,.42,1.14);
}
@keyframes cookieModalBounceIn {
  0% { opacity:0; transform: scale(0.7) translateY(48px); }
  65% { opacity:1; transform: scale(1.08) translateY(-9px); }
  100% { opacity:1; transform: scale(1) translateY(0); }
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 11px; right: 14px;
  font-size: 1.52rem;
  color: #D4A373;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.19s;
}
.cookie-modal .cookie-modal-close:hover {
  background: #D4A373;
  color: #FFF;
}
.cookie-modal h2 {
  font-size: 1.5rem;
  margin-bottom: 2px;
  font-family: 'Montserrat',sans-serif;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 1.08rem;
}
.cookie-modal .cookie-category label {
  font-weight: 700;
  font-family: 'Lato',sans-serif;
}
.cookie-modal .cookie-toggle {
  position: relative;
  width: 48px;
  height: 26px;
  display: inline-block;
}
.cookie-modal .cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  top: 0; left: 0;
  height: 100%; width: 100%;
  background: #CFD8DC;
  border-radius: 16px;
  transition: background 0.21s;
}
.cookie-modal .cookie-toggle input:checked + .slider {
  background: #182D47;
}
.cookie-modal .slider:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 18px;
  height: 18px;
  background: #FFD5C2;
  border-radius: 50%;
  transition: transform 0.19s;
}
.cookie-modal .cookie-toggle input:checked + .slider:before {
  transform: translateX(20px);
  background: #D4A373;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 14px;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions button {
  padding: 8px 18px;
  border-radius: 14px;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  font-size: 1.01rem;
  border: none;
  background: #182D47;
  color: #FFF;
  transition: background 0.19s, color 0.19s;
}
.cookie-modal .cookie-modal-actions button:hover,
.cookie-modal .cookie-modal-actions button:focus {
  background: #D4A373;
  color: #182D47;
}
.cookie-modal .cookie-category .required {
  font-size: 0.95rem;
  font-weight: 700;
  color: #D4A373;
  margin-left: 14px;
}
@media (max-width: 480px) {
  .cookie-modal .cookie-modal-content {
    max-width: 96vw;
    padding: 18px 6vw 12px 6vw;
  }
}

/* --- PAGE-SPECIFIC --- */
.project-list li,
.event-list li{
  background: #F6F2EE;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 14px;
  box-shadow: 0 1px 8px 0 rgba(24,45,71,0.05);
  font-size: 1.06rem;
}
.project-list strong,
.event-list strong {
  color: #182D47;
  font-weight: 700;
}
.cta-section {
  background: #D4A373;
  color: #182D47;
  border-radius: 24px;
  box-shadow: 0 2px 19px 0 rgba(212,163,115,0.15);
}
.cta-section h2, .cta-section p {
  color: #182D47;
}

.thank-you {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 45vh;
}
.thank-you .content-wrapper {
  align-items: center;
  text-align: center;
}

/* --- MISC DECORATIVE ELEMENTS --- */
blockquote {
  quotes: "\201C" "\201D";
}
blockquote:before {
  content: open-quote;
  color: #D4A373;
  font-size: 2rem;
  vertical-align: top;
  font-family: 'Montserrat',sans-serif;
}
blockquote:after {
  content: close-quote;
  color: #D4A373;
  font-size: 2rem;
  vertical-align: bottom;
  font-family: 'Montserrat',sans-serif;
}

/* ------ CREATIVE ARTISTIC FLOURISHES ------ */
h1, h2, h3 {
  position: relative;
  z-index: 2;
}
h1::after, h2::after {
  content: '';
  display: block;
  position: absolute;
  left: -10px; bottom: -8px;
  width: 70px; height: 11px;
  background: #FFD5C2;
  border-radius: 4px;
  z-index: -1;
  opacity: 0.55;
}
h2::after {
  width: 44px;
  height: 7px;
  left: -5px;
  bottom: -7px;
}

.hero h1::after, .hero h2::after, .cta-section h2::after {
  background: #FFF3E5;
}
.section h2::after {
  left: -5px; background: #FFD5C2;
}

.cta.primary {
  box-shadow: 0 5px 21px 0 rgba(212,163,115,0.17);
  text-shadow: 0 1px 6px #FFF3E5;
}

/* --- FORM ELEMENTS (if present on contact) --- */
input[type=text], input[type=email], textarea {
  border: 1.5px solid #D4A373;
  border-radius: 11px;
  padding: 12px 16px;
  font-size: 0.99rem;
  width: 100%;
  margin-bottom: 18px;
  font-family: 'Lato',sans-serif;
  background: #F9F8F6;
  color: #182D47;
  transition: border 0.16s, box-shadow 0.15s;
}
input:focus, textarea:focus {
  border: 1.5px solid #182D47;
  outline: none;
  box-shadow: 0 0 8px 0 #FFD5C2;
}

/* --- ACCESSIBILITY IMPROVEMENTS --- */
a:focus, button:focus, input:focus, textarea:focus {
  outline: 2.5px solid #D4A373;
  outline-offset: 1.5px;
}

/* ------ END CSS FILE ------ */
