/* CSS RESET & BASE STYLE ---------------------------------- */
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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: linear-gradient(120deg, #E2E2EA 0%, #fff 100%);
  color: #22232E;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #B78F3B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #22232E;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
strong {
  font-weight: bold;
}

/* FONT FACE ------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #22232E;
  margin-bottom: 12px;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.2rem; margin-bottom: 12px; }
h4 { font-size: 1rem; margin-bottom: 8px; font-family: 'Roboto',Arial,sans-serif; }
h5, h6 { font-size: 1rem; margin-bottom: 6px; font-family: 'Roboto',Arial,sans-serif; }

p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #22232E;
  margin-bottom: 12px;
}
.subheadline {
  font-size: 1.2rem;
  color: #595968;
  margin-bottom: 24px;
  font-weight: 400;
  font-family: 'Roboto', Arial, sans-serif;
}
/* CONTAINER & LAYOUT ---------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* Padding will be in section */
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 rgba(34,35,46,0.05), 0 1.5px 5px 0 rgba(183,143,59,0.02);
}
section.hero {
  background: linear-gradient(120deg, #E2E2EA 0%, #fff 95%);
  box-shadow: 0 2px 28px 0 rgba(34,35,46,0.05);
  border-radius: 0 0 48px 48px;
  padding-top: 60px;
  padding-bottom: 60px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .section, section {
    padding: 24px 4px;
    margin-bottom: 36px;
    border-radius: 16px;
  }
  .container {
    padding-left: 4px;
    padding-right: 4px;
  }
  section.hero {
    border-radius: 0 0 32px 32px;
    padding-top: 36px;
    padding-bottom: 36px;
    margin-bottom: 36px;
  }
}
/* FLEXBOX PATTERNS ------------------------------------------ */
.card-container,
.feature-grid,
.value-grid,
.service-cards,
.events-list,
.blog-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card,
.feature-grid > div,
.value-grid > div,
.service-cards > div,
.blog-cards > div,
.events-list > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(34,35,46,0.08), 0 0.5px 2px 0 rgba(183,143,59,0.04);
  padding: 24px 22px;
  flex: 1 1 290px;
  margin-bottom: 20px;
  position: relative;
  min-width: 240px;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.card:hover, .feature-grid > div:hover, .value-grid > div:hover, .service-cards > div:hover, .blog-cards > div:hover,
.events-list > div:hover {
  box-shadow: 0 8px 32px 0 rgba(34,35,46,0.17), 0 1.5px 7px 0 rgba(183,143,59,0.06);
  transform: translateY(-8px) scale(1.03);
}
@media (max-width: 900px) {
  .card-container,
  .feature-grid,
  .value-grid,
  .service-cards,
  .events-list,
  .blog-cards {
    gap: 16px;
  }
  .card,
  .feature-grid > div,
  .value-grid > div,
  .service-cards > div,
  .blog-cards > div,
  .events-list > div {
    min-width: 180px;
    padding: 18px 10px;
  }
}
@media (max-width: 768px) {
  .card-container,
  .feature-grid,
  .value-grid,
  .service-cards,
  .events-list,
  .blog-cards {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
    margin-bottom: 8px;
  }
  .card,
  .feature-grid > div,
  .value-grid > div,
  .service-cards > div,
  .blog-cards > div,
  .events-list > div {
    min-width: 0;
    width: 100%;
  }
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F5F5FB;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px 0 rgba(34,35,46,0.08);
}
.testimonial-card .author {
  margin-left: auto;
  font-weight: 500;
  color: #22232E;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.newsletter-section {
  background: #22232E;
  color: #fff;
  border-radius: 20px;
  padding: 42px 24px;
  box-shadow: 0 4px 32px 0 rgba(34,35,46,0.12),0 1.5px 5px 0 rgba(183,143,59,0.03);
  margin-bottom: 60px;
}
.newsletter-section h2,
.newsletter-section p, 
.newsletter-section form {
  color: #fff;
}
@media (max-width: 768px) {
  .newsletter-section {
    padding: 24px 10px;
    border-radius: 12px;
    margin-bottom: 32px;
  }
}
.cta-banner {
  background: linear-gradient(90deg, #22232E 85%, #B78F3B 110%);
  color: #fff;
  border-radius: 18px;
  padding: 42px 24px;
  text-align: center;
  margin-bottom: 60px;
}
.cta-banner .cta {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .cta-banner {
    padding: 22px 8px;
    border-radius: 12px;
    margin-bottom: 32px;
  }
}
/* HEADER & NAVIGATION --------------------------------------- */
header {
  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 18px 0 rgba(34,35,46,0.06);
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
}
header nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
header nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #22232E;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.25s;
  position: relative;
}
header nav a::after {
  content: '';
  display: block;
  margin: 0 auto;
  width: 0;
  height: 2px;
  background: #B78F3B;
  transition: width 0.18s;
}
header nav a:hover, header nav a:focus {
  color: #B78F3B;
}
header nav a:hover::after, header nav a:focus::after {
  width: 80%;
}
.cta.primary, .cta.secondary {
  display: inline-block;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 22px;
  padding: 13px 32px;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s, color 0.2s, box-shadow .3s, transform 0.18s;
  min-width: 156px;
  margin-left: 12px;
  margin-right: 8px;
}
.cta.primary {
  background: linear-gradient(90deg, #22232E 85%, #B78F3B 110%);
  color: #fff;
  box-shadow: 0 2px 20px 0 rgba(34,35,46,0.10);
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(90deg, #B78F3B 8%, #22232E 110%);
  color: #fff;
  box-shadow: 0 6px 32px 0 rgba(183,143,59,0.14);
  transform: translateY(-2px) scale(1.03);
}
.cta.secondary {
  background: #fff;
  color: #22232E;
  border: 2px solid #B78F3B;
  box-shadow: 0 2px 10px 0 rgba(34,35,46,0.05);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #B78F3B;
  color: #fff;
  border-color: #22232E;
  box-shadow: 0 4px 18px 0 rgba(183,143,59,0.11);
  transform: translateY(-1px) scale(1.03);
}

.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: none;
  font-size: 2rem;
  color: #22232E;
  cursor: pointer;
  margin-left: auto;
  margin-right: 0;
  z-index: 1002;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #B78F3B;
}
@media (max-width: 900px) {
  header nav, .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* MOBILE NAVIGATION MENU ------------------------------------ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(34,35,46,0.94);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(105%);
  transition: transform 0.45s cubic-bezier(.6,.01,.33,1.02);
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  padding: 24px 24px 8px 24px;
  cursor: pointer;
  align-self: flex-end;
  z-index: 2600;
  transition: color 0.2s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #B78F3B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100vw;
  align-items: flex-start;
  gap: 20px;
  padding: 12px 32px 32px 32px;
  margin-top: 18px;
}
.mobile-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.2rem;
  color: #fff;
  padding: 16px 0;
  font-weight: 500;
  border-bottom: 1px solid rgba(226,226,234,0.12);
  width: 100%;
  text-align: left;
  display: flex;
  align-items: flex-start;
  transition: color 0.15s, background 0.15s;
  border-radius: 8px;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #22232E;
  color: #B78F3B;
}
@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}
 
/* FORMS ----------------------------------------------------- */
form {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  margin-bottom: 16px;
}
input[type="email"],
input[type="text"] {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  background: #fff;
  color: #22232E;
  border-radius: 16px;
  border: 1px solid #E2E2EA;
  padding: 11px 18px;
  outline: none;
  flex: 1 1 210px;
  box-shadow: 0 1.5px 10px rgba(183,143,59,0.04);
  transition: border 0.18s, box-shadow 0.18s;
}
input[type="email"]:focus,
input[type="text"]:focus {
  border: 1.5px solid #B78F3B;
  box-shadow: 0 2px 14px 0 rgba(183,143,59,0.14);
}
button[type="submit"] {
  margin-right: 0;
}
 
@media (max-width: 500px) {
  form {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  input[type="email"], input[type="text"] {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
}

/* FOOTER ---------------------------------------------------- */
footer {
  width: 100%;
  background: #22232E;
  color: #fff;
  padding: 0;
  margin-top: 60px;
  font-size: 1rem;
}
footer .container { padding-top: 40px; padding-bottom: 40px; }
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 48px;
  justify-content: space-between;
  align-items: flex-start;
}
footer p{
  color: white;
}
footer .content-wrapper > div {
  flex: 1 1 0;
  min-width: 150px;
  margin-bottom: 0;
}
footer img {
  width: 44px;
  height: auto;
  margin-bottom: 12px;
}
footer a {
  color: #fff;
  opacity: .84;
  transition: color .26s, opacity 0.2s;
}
footer a:hover, footer a:focus {
  color: #B78F3B;
  opacity: 1;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer .social-links {
  display: flex;
  gap: 17px;
  align-items: center;
  margin-top: 14px;
}
footer .social-links a img {
  width: 28px;
  height: 28px;
  opacity: 0.82;
  transition: opacity .2s;
}
footer .social-links a:hover img, footer .social-links a:focus img {
  opacity: 1;
}
@media (max-width: 768px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  footer .container {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

/* COOKIE CONSENT BANNER ----------------------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, #fff 78%, #E2E2EA 100%);
  color: #22232E;
  z-index: 3200;
  box-shadow: 0 -2px 18px 0 rgba(34,35,46,0.09);
  padding: 26px 20px 23px 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-radius: 20px 20px 0 0;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.33s cubic-bezier(.55,.05,.14,1), transform .39s cubic-bezier(.46,.03,.52,.96);
  transform: translateY(80px) scale(0.98);
}
.cookie-consent-banner.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}
.cookie-consent-banner .cookie-text {
  flex: 3 1 440px;
  font-size: 1rem;
  color: #22232E;
}
.cookie-consent-banner .cookie-buttons {
  flex: 1 0 260px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
}
.cookie-consent-banner button {
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 18px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 22px;
  font-size: 1rem;
  transition: background 0.19s, color 0.14s, box-shadow 0.16s;
  margin-right: 0;
}
.cookie-consent-banner .accept {
  background: #B78F3B;
  color: #fff;
}
.cookie-consent-banner .accept:hover { background: #22232E; color: #fff; }
.cookie-consent-banner .reject {
  background: #fff;
  border: 1.3px solid #B78F3B;
  color: #22232E;
}
.cookie-consent-banner .reject:hover { background: #E2E2EA; color: #22232E; }
.cookie-consent-banner .settings {
  background: #fff;
  border: 1.3px solid #22232E;
  color: #22232E;
}
.cookie-consent-banner .settings:hover { background: #B78F3B; color: #fff; }
@media (max-width: 700px) {
  .cookie-consent-banner {
    max-width: 100vw;
    flex-direction: column;
    border-radius: 10px 10px 0 0;
    padding: 18px 7px 18px 10px;
    gap: 14px;
    transform: translateY(100px);
  }
  .cookie-consent-banner .cookie-buttons {
    gap: 8px;
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
}

/* COOKIE PREFERENCE MODAL ----------------------------------- */
#cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 3700;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(34,35,46, 0.79);
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
}
#cookie-modal-overlay.visible {
  display: flex;
  opacity: 1;
}
#cookie-modal {
  background: #fff;
  border-radius: 24px;
  max-width: 420px;
  padding: 38px 26px 28px 26px;
  box-shadow: 0 8px 52px 0 rgba(183,143,59,0.11), 0 2px 14px 0 rgba(34,35,46,0.11);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
#cookie-modal h3 {
  color: #22232E;
  font-family: 'Playfair Display',serif;
  font-size: 1.5rem;
  margin-bottom: 4px;
}
#cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
#cookie-modal .cookie-category label {
  margin-left: 7px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
#cookie-modal .cookie-category input[type="checkbox"] {
  width: 19px; height: 19px;
  accent-color: #B78F3B;
}
#cookie-modal .category-essential {
  opacity: 0.7;
}
#cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 14px;
}
#cookie-modal .cookie-modal-actions button {
  border-radius: 16px;
  border: none;
  background: #B78F3B;
  color: #fff;
  padding: 10px 23px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 2px 10px 0 rgba(183,143,59,0.06);
  transition: background 0.13s, color 0.13s;
}
#cookie-modal .cookie-modal-actions .cancel {
  background: #fff;
  color: #22232E;
  border: 1.3px solid #22232E;
}
#cookie-modal .cookie-modal-actions .cancel:hover {
  background: #E2E2EA;
  color: #B78F3B;
}
#cookie-modal .cookie-modal-actions .save:hover {
  background: #22232E;
  color: #fff;
}
@media (max-width: 500px) {
  #cookie-modal {
    border-radius: 14px;
    padding: 14px 7px 14px 10px;
    max-width: 96vw;
  }
  #cookie-modal .cookie-modal-actions {
    flex-direction: column;
    gap: 9px;
    width: 98%;
  }
}

/* PAGE SPECIFIC SECTIONS AND ELEMENTS ----------------------- */
.text-section {
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}
.uniqueness {
  font-style: italic;
  color: #B78F3B;
  font-size: 1.12rem;
  margin-top: 18px;
  margin-bottom: 0;
}
.highlights {
  background: #F5F5FB;
  border-radius: 11px;
  padding: 14px 18px;
  margin-top: 24px;
  margin-bottom: 16px;
}
.highlights h4 {
  font-size: 1.03rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.trend-focus-area {
  background: #F5F5FB;
  border-left: 5px solid #B78F3B;
  border-radius: 8px 18px 18px 8px;
  padding: 12px 18px 12px 11px;
  margin-top: 16px;
  margin-bottom: 11px;
}
.thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(90deg, #E2E2EA 45%, #fff 100%);
  border-radius: 22px;
  box-shadow: 0 4px 32px 0 rgba(34,35,46,0.07);
}
.thank-you .container { display: flex; justify-content: center; align-items: center; }
.thank-you .content-wrapper {
  text-align: center;
  align-items: center;
}

/* Utility spacing for card-grouped blocks */
.services-short ul,
.text-section ul,
.text-section ol {
  margin-bottom: 18px;
}
.services-short ul li,
.text-section ul li,
.text-section ol li {
  margin-bottom: 6px;
}

/* RESPONSIVE MASTER RULES ----------------------------------- */
@media (max-width: 1100px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 900px) {
  .content-wrapper {
    padding: 0;
  }
  .card-container, .feature-grid, .value-grid, .service-cards, .blog-cards, .events-list {
    gap: 16px;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.14rem; }
  h3 { font-size: 0.99rem; }
  p, li { font-size: 0.9rem; }
  .cta.primary, .cta.secondary {
    padding: 11px 10px;
    font-size: .97rem;
    min-width: 0;
    margin-left: 0;
  }
}

/* SCROLLBAR STYLING ---------------------------------------- */
::-webkit-scrollbar {
  width: 8px;
  background: #E2E2EA;
}
::-webkit-scrollbar-thumb {
  background: #B78F3B;
  border-radius: 8px;
}

/* TRANSITION EFFECTS --------------------------------------- */
button, .cta, input, a {
  transition: background .18s, color .18s, border .18s, box-shadow .18s, transform .2s;
}

/* CARD HOVER SHADOWS --------------------------------------- */
.card:hover, .feature-grid > div:hover, .service-cards > div:hover, .blog-cards > div:hover, .events-list > div:hover {
  box-shadow: 0 10px 38px 0 rgba(34,35,46,0.13), 0 1.5px 8px 0 rgba(183,143,59,0.16);
}

/* OVERLAY FOR MODALS --------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(34,35,46,0.72);
  z-index: 3700;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ACCESSIBILITY FOCUS OUTLINES ----------------------------- */
a:focus, button:focus, input:focus {
  outline: 2px solid #B78F3B;
  outline-offset: 2px;
}

/* Hide visually but keep accessible */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  border: 0 !important;
}
