/* --- CSS RESET & BASE 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 {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: #F9F7F2;
  color: #232B38;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border-style: none;
}
a {
  color: #A72920;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #232B38;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}
*, *::before, *::after {
  box-sizing: inherit;
}

/* --- BRAND TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  color: #232B38;
  letter-spacing: 0.03em;
  font-weight: 700;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.18;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.15rem;
  font-weight: 600;
}
p, blockquote, ul, ol {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #232B38;
}
blockquote {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  margin: 0 0 1em 0;
  color: #232B38;
  background: rgba(247, 235, 206, 0.40);
  border-left: 6px solid #A72920;
  padding: 18px 20px 18px 28px;
  border-radius: 0 8px 8px 0;
}
strong, b {
  font-weight: 700;
  color: #A72920;
}

/* --- CONTAINERS & SPACING PATTERNS --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.section,
main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF8F0;
  border-radius: 16px;
  box-shadow: 0 3px 16px rgba(65, 27, 3, 0.05);
}
main > section:first-child {
  background: #F5ECE2;
}
.content-wrapper,
.text-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

/* --- FLEX LAYOUTS AS REQUIRED --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 16px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FBF7F0;
  padding: 20px 22px 18px 22px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(122, 60, 8, 0.07);
  margin-bottom: 20px;
  min-width: 210px;
  flex: 1 1 220px;
  border: 1.5px dashed #E3C77B;
  position: relative;
  transition: box-shadow 0.18s;
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  filter: sepia(0.3) hue-rotate(-18deg) contrast(1.15);
}
.feature-item:hover {
  box-shadow: 0 4px 32px 0 rgba(122, 60, 8, 0.14);
  border-color: #A72920;
  background: #F5ECE2;
}

.highlight-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  background: #FFF8F0;
  border: 2px solid #E3C77B;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(90, 46, 7, 0.09);
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 360px;
  padding: 30px 24px 28px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: box-shadow 0.22s, border 0.22s, background 0.2s;
}
.card-link {
  color: #A72920;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 8px;
  transition: color 0.2s;
  display: inline-block;
}
.card-link:hover,
.card-link:focus {
  color: #232B38;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(90, 46, 7, 0.14);
  background: #F5ECE2;
  border-color: #A72920;
  z-index: 2;
}

.story-preview,
.spotlight, .artist-profile {
  background: #FFF8F0;
  border-left: 7px solid #A72920;
  border-radius: 0 12px 12px 0;
  margin-bottom: 20px;
  padding: 22px 24px 20px 30px;
  box-shadow: 0 2px 8px rgba(123, 72, 12, 0.06);
  position: relative;
}

.bio-snippets {
  margin-top: 16px;
  background: #FBECD9;
  color: #5D3B19;
  border-radius: 8px;
  padding: 16px 18px;
  font-size: 1rem;
}

.map-overview {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 28px;
  background: #F5ECE2;
  padding: 18px 22px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(172,122,24,0.08);
}
.map-overview img {
  flex: 0 0 56px;
}
.map-overview ul {
  margin-top: 0;margin-bottom: 0;
padding-left: 18px;
}

.contact-note {
  background: #FFEFD8;
  border-left: 6px solid #A72920;
  padding: 14px 18px 14px 22px;
  border-radius: 8px 0 0 8px;
  margin-bottom: 20px;
  font-size: 1.06rem;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF8F0;
  border-radius: 14px;
  border-left: 5px solid #A72920;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(85, 45, 7, 0.10);
  color: #232B38;
}
.testimonial-card blockquote {
  margin: 0;
  padding: 0 10px 0 0;
  background: transparent;
  border-left: none;
  color: #232B38;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.12rem;
}
.testimonial-card span {
  color: #A72920;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 0.96rem;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #232B38;
  color: #F9F7F2;
  box-shadow: 0 2px 10px rgba(27,15,4,0.03);
  position: sticky;
  top: 0;
  z-index: 999;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
}
header img {
  height: 42px;
  width: auto;
  margin-right: 24px;
}
nav {
  display: flex;
  gap: 22px;
}
nav a {
  color: #F9F7F2;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.07rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 3px 0;
  transition: color 0.17s;
}
nav a:hover, nav a:focus {
  color: #FFD97B;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2rem;
  color: #FFD97B;
  border: none;
  cursor: pointer;
  padding: 8px 13px;
  transition: background 0.15s;
  border-radius: 8px;
  margin-left: 12px;
}
.mobile-menu-toggle:focus {
  outline: 4px solid #FFD97B40;
}

/* --- MOBILE SLIDE MENU --- */
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #232B38;
  transition: transform 0.33s cubic-bezier(.78,.05,.37,.89);
  transform: translateX(-100%);
}
.mobile-menu.open {
  display: block;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 26px;
  z-index: 2;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #FFD97B;
  cursor: pointer;
  transition: background 0.13s, color 0.14s;
  border-radius: 8px;
  padding: 8px;
}
.mobile-menu-close:focus {
  outline: 4px solid #FFD97B70;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  margin: 70px 32px 0 32px;
}
.mobile-nav a {
  color: #FFD97B;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.23rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 9px 0;
  border-radius: 0;
  transition: color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FFF8F0;
}

/* --- CTAs & BUTTONS --- */
.cta, button, input[type="submit"] {
  display: inline-block;
  background: #A72920;
  color: #FFF8F0;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.10rem;
  font-weight: 700;
  border: none;
  border-radius: 9px;
  padding: 12px 32px;
  margin-top: 10px;
  cursor: pointer;
  box-shadow: 0 2px 7px rgba(122,41,32,0.07);
  letter-spacing: 0.03em;
  transition: background 0.19s, color 0.19s, box-shadow 0.18s, transform 0.18s;
}
.cta.primary, button.primary, input[type="submit"].primary {
  background: #FFD97B;
  color: #232B38;
  text-shadow: none;
}
.cta.secondary {
  background: #232B38;
  color: #FFD97B;
}
.cta:hover,
button:hover,
.cta:focus,
button:focus {
  background: #232B38;
  color: #FFD97B;
  outline: none;
  box-shadow: 0 4px 24px rgba(122,41,32,0.18), 0 0px 2px 0 #FFF8F0 inset;
  transform: translateY(-2px) scale(1.017);
}
.cta.primary:hover,
.cta.primary:focus {
  background: #A72920;
  color: #FFF8F0;
}

/* --- FOOTER --- */
footer {
  background: #E3C77B;
  color: #35230D;
  padding: 38px 0 20px 0;
  border-top: 7px double #C29B6F;
}
.footer-nav {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #A72920;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.15s;
  padding: 0 2px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #232B38;
  text-decoration: underline;
}
.footer-brand {
  text-align: center;
  margin-top: 12px;
  color: #472906;
  font-size: 0.96rem;
}
.footer-brand img {
  display: block;
  margin: 0 auto 10px auto;
  height: 38px;
}

/* --- TEXT/IMAGE FLEX SECTIONS --- */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* --- SPECIAL/DECORATIVE VINTAGE ELEMENTS --- */
.card, .feature-item, .spotlight, .story-preview, .testimonial-card, .contact-note, .artist-profile {
  background-image: repeating-linear-gradient(135deg,transparent,transparent 27px,rgba(227,199,123,0.15) 28px,transparent 36px);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --- RESPONSIVE: MOBILE FIRST (column layout) --- */
@media (max-width: 1040px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .feature-grid, .highlight-cards {
    flex-direction: column;
    gap: 24px;
  }
  .map-overview {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    gap: 8px;
    padding: 12px 7px;
  }
  .container, main > section {
    padding-left: 7px;
    padding-right: 7px;
  }
  .feature-item, .card, .story-preview, .spotlight, .testimonial-card, .contact-note {
    min-width: 0;
    max-width: 100%;
    padding-left: 13px;
    padding-right: 13px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 22px;
    align-items: stretch;
  }
  .feature-grid, .highlight-cards, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 9px;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 1.65rem;
  }
  h2 {
    font-size: 1.22rem;
  }
  h3 {
    font-size: 1rem;
  }
  .section, main > section {
    padding: 20px 2px;
    margin-bottom: 36px;
    border-radius: 9px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  z-index: 3000;
  left: 0;
  right: 0;
  bottom: 0;
  background: #232B38;
  color: #F9F7F2;
  box-shadow: 0 -2px 22px rgba(35,43,56,0.11);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8% 24px 6%;
  font-size: 1rem;
  gap: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner-text {
  max-width: 390px;
  line-height: 1.7;
  font-size: 1rem;
}
.cookie-actions {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
  align-items: center;
}
button.cookie-consent-btn {
  background: #FFD97B;
  color: #232B38;
  border: none;
  border-radius: 7px;
  padding: 9px 26px;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0;
  cursor: pointer;
  margin-right: 0;
  transition: box-shadow 0.21s, background 0.17s, color 0.17s;
}
button.cookie-consent-btn.cookie-settings {
  background: #A72920;
  color: #fff;
}
button.cookie-consent-btn:hover, button.cookie-consent-btn:focus {
  background: #232B38;
  color: #FFD97B;
  outline: none;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 20px 3% 20px 3%;
    font-size: 0.99rem;
  }
  .cookie-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(35,43,56,.60);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #FFF8F0;
  color: #232B38;
  border-radius: 16px;
  min-width: 320px;
  max-width: 96vw;
  padding: 36px 28px 32px 28px;
  box-shadow: 0 8px 36px rgba(35,43,56,0.20);
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
}
.cookie-modal h3 {
  font-size: 1.14rem;
  margin-bottom: 4px;
}
.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  color: #A72920;
  font-size: 1.7rem;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.14s;
  padding: 3px 8px;
}
.cookie-modal-close:focus {
  outline: 3px solid #FFD97B80;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-toggle input[type="checkbox"] {
  width: 1.3em;
  height: 1.3em;
  accent-color: #A72920;
}
.cookie-modal-category {
  font-weight: 600;
  color: #A72920;
}
.cookie-modal-actions {
  margin-top: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-modal .cta, .cookie-modal button {
  margin-top: 0;
  padding: 7px 22px;
  font-size: 1rem;
  border-radius: 6px;
}

/* --- MISC --- */
::-webkit-scrollbar {
  width: 11px;
  background: #FFF8F0;
}
::-webkit-scrollbar-thumb {
  background: #E3C77B;
  border-radius: 4px;
}

/* --- VINTAGE/RETRO CUSTOM DETAILS --- */
.section, .card, .feature-item, .testimonial-card, .spotlight, .artist-profile, .story-preview {
  border-radius: 12px 32px 12px 24px;
  border-width: 1.5px;
  border-style: solid;
  border-color: #E3C77B;
}
h1,h2,h3,h4 {
  text-shadow: 1.5px 1.5px 0 #FFD97B20;
  letter-spacing: 0.007em;
}
.card:before {
  content: "";
  position: absolute;
  width: 90px;
  height: 50px;
  background: url('../assets/vintage-pattern.svg');
  top: -22px;
  right: -18px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}
.card {
  overflow: hidden;
}

/* --- INTERACTIVE ELEMENT HOVER STATES --- */
.card, .feature-item, .cta, button, .cookie-consent-btn {
  transition: box-shadow 0.18s, border 0.18s, background 0.2s, color 0.2s, transform 0.18s;
}
.card:active, .feature-item:active, .cta:active, button:active {
  transform: scale(0.995);
}
h1:after {
  content: "";
  display: block;
  width: 55px;
  height: 5px;
  background: repeating-linear-gradient(90deg,#A72920,#FFD97B,#A72920 70%);
  border-radius: 3px;
  margin-top: 11px;
  opacity: 0.32;
}

/* --- LIST MARKERS & TEXTGING --- */
ul, ol {
  padding-left: 22px;
  margin-bottom: 1.1em;
}
ul li::marker, ol li::marker {
  color: #A72920;
  font-family: 'Merriweather';
  font-weight: bold;
  font-size: 1em;
}

/* --- ICON TEXT (Contact page) --- */
.text-section ul li img {
  width: 1.25em;
  height: 1.25em;
  margin-right: 7px;
  vertical-align: middle;
  filter: sepia(70%) hue-rotate(-12deg) contrast(1.25) brightness(1.1);
}

/* --- REMOVE FOCUS OUTLINES (if unwanted) --- */
a, button, .cta {
  outline: none;
}

/* --- Z-INDEXS --- */
.mobile-menu, .mobile-menu.open, .cookie-banner.show, .cookie-modal-overlay.show { z-index: 2000 !important; }
h1, h2, h3, .cta, button, .card, .feature-item { z-index: 1; }

/* --- PRINT STYLES --- */
@media print {
  header, footer, .cookie-banner, .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
  main, .container, .section {
    color: #000;
    background: #fff;
    box-shadow: none !important;
    border: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
}

/* END CSS */
