/* MurArt Prestige Minimalist CSS Theme */
/* ==== CSS RESET & BASE ==== */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #232a3a;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #7e5d31;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #232a3a;
  outline: none;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 16px;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: inline-block;
}
blockquote {
  border-left: 3px solid #7e5d31;
  margin: 16px 0;
  padding-left: 16px;
  color: #232a3a;
  font-style: italic;
  background: #faf9f7;
}
strong {
  font-weight: 600;
}
hr { border: none; border-top: 1px solid #eee; margin: 32px 0; }

/* ==== TYPOGRAPHY HIERARCHY ==== */
h1, .h1 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  font-size: 2.6rem;
  color: #232a3a;
  line-height: 1.15;
  margin-bottom: 18px;
}
h2, .h2 {
  font-family: 'Merriweather', serif;
  font-weight: 600;
  font-size: 2rem;
  color: #232a3a;
  line-height: 1.2;
  margin-bottom: 12px;
}
h3, .h3 {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: #232a3a;
  margin-bottom: 10px;
}
h4, .h4 {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
p, li {
  font-size: 1rem;
  line-height: 1.7;
  color: #232a3a;
  margin-bottom: 8px;
}
.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.18rem;
  color: #484848;
  font-weight: 400;
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.5rem; }
  h3, .h3 { font-size: 1.15rem; }
}

/* ==== BRAND COLORS ==== */
:root {
  --mp-primary: #232a3a;
  --mp-secondary: #7e5d31;
  --mp-accent: #f6e4c3;
  --mp-bg-section: #faf9f7;
  --mp-bg-card: #fff;
  --mp-grey: #eee;
  --mp-shadow: 0 4px 20px 0 rgba(35, 42, 58, 0.08);
  --mp-radius: 12px;
}

/* ==== LAYOUT CONTAINERS ==== */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--mp-bg-section);
  border-radius: var(--mp-radius);
}

/* ==== FLEXBOX PATTERNS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  flex: 1 1 260px;
  margin-bottom: 20px;
  padding: 32px 28px;
  background: var(--mp-bg-card);
  border-radius: var(--mp-radius);
  box-shadow: var(--mp-shadow);
  transition: box-shadow 0.2s;
  position: relative;
  min-width: 230px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card:hover, .card:focus {
  box-shadow: 0 6px 32px 0 rgba(35, 42, 58, 0.16);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--mp-radius);
  box-shadow: 0 2px 16px 0 rgba(35, 42, 58, 0.08);
  max-width: 540px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
  margin-bottom: 8px;
}
.feature-grid > div {
  background: #fff;
  border-radius: var(--mp-radius);
  box-shadow: 0 2px 10px 0 rgba(35,42,58,0.06);
  padding: 24px 20px 18px 20px;
  flex: 1 1 210px;
  min-width: 180px;
  max-width: 265px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: box-shadow .2s;
}
.feature-grid > div:hover {
  box-shadow: 0 4px 20px 0 rgba(35,42,58,0.16);
}

@media (max-width: 768px) {
  .container { padding: 0 14px; }
  .section {padding: 32px 8px;}
  .feature-grid {gap: 16px;}
  .feature-grid > div { min-width: 120px; max-width: 100%; }
  .content-grid { flex-direction: column; gap: 20px; }
  .card-container { flex-direction: column; gap: 18px; }
  .card { max-width: 100%; min-width: 0; padding: 22px 14px; }
  .text-image-section { flex-direction: column; gap: 18px; }
}

/* ==== HEADER & NAV ==== */
header {
  background: #fff;
  border-bottom: 1px solid var(--mp-grey);
  box-shadow: 0 2px 10px 0 rgba(35,42,58,0.04);
  padding: 0;
  position: sticky;
  top: 0; left: 0; right:0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #232a3a;
  letter-spacing: 0.01em;
  padding: 6px 0;
  position: relative;
  transition: color .18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #7e5d31;
}
.cta-primary {
  display: inline-block;
  background: var(--mp-secondary);
  color: #fff !important;
  font-weight: 700;
  padding: 11px 28px;
  border-radius: 6px;
  box-shadow: 0 2px 12px 0 rgba(126,93,49,0.08);
  font-size: 1rem;
  letter-spacing: .03em;
  text-align: center;
  transition: background .2s, box-shadow .2s, color .2s;
  margin-left: 20px;
  border: none;
  cursor: pointer;
}
.cta-primary:hover, .cta-primary:focus {
  background: #232a3a;
  color: #f6e4c3 !important;
  box-shadow: 0 6px 24px 0 rgba(35,42,58,.13);
  outline: none;
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: #232a3a;
  padding: 6px 12px;
  cursor: pointer;
  transition: color .18s;
  z-index: 101;
}
.mobile-menu-toggle:focus { color: #7e5d31; outline: none; }

@media (max-width: 992px) {
  .main-nav, .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ==== MOBILE SLIDE MENU ==== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 2px 40px 0 rgba(35,42,58,0.12);
  transform: translateX(-100%);
  transition: transform 0.44s cubic-bezier(.7,.17,.47,1.23);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 28px 0 0;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #232a3a;
  cursor: pointer;
  z-index: 2002;
  transition: color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color:#7e5d31; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  gap: 24px;
}
.mobile-nav a {
  font-size: 1.3rem;
  color: #232a3a;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 12px 0;
  width: 100%;
  text-align: center;
  border-radius: 4px;
  transition: background .18s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--mp-accent);
  color: #7e5d31;
}

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

/* ==== HERO SECTION ==== */
.hero {
  min-height: 48vw;
  display: flex;
  align-items: center;
  background: var(--mp-bg-section);
  padding: 60px 0 32px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 700px;
}

@media (max-width: 768px) {
  .hero { padding: 32px 0 20px 0; }
  .hero .content-wrapper { max-width: 100%; }
}

/* ==== PORTFOLIO TEASER/SUMMARY ==== */
.portfolio-teaser .content-wrapper > div {
  margin-bottom: 20px;
  padding: 18px 20px;
  background: #fff;
  border-radius: var(--mp-radius);
  box-shadow: 0 2px 12px 0 rgba(35,42,58,0.06);
}

/* ==== SERVICES HIGHLIGHT ==== */
.services-highlight ul { margin-bottom: 14px; }
.services-highlight a {
  font-weight: 600;
  color: #7e5d31;
  border-bottom: 1px dashed #7e5d31;
  transition: color .17s, border .12s;
}
.services-highlight a:hover {color: #232a3a; border-bottom: 1px solid #232a3a;}

/* ==== CTA ==== */
.cta {
  background: var(--mp-secondary);
  color: #fff;
  border-radius: var(--mp-radius);
  margin-bottom: 44px;
}
.cta a {
  color: #eedab1 !important;
}
.cta .content-wrapper h2, .cta .content-wrapper p, .cta .cta-primary {
  color: #fff !important;
}
.cta .cta-primary {
  background: #fff;
  color: var(--mp-secondary) !important;
  margin-left: 0;
}
.cta .cta-primary:hover, .cta .cta-primary:focus {
  background: #232a3a;
  color: #f6e4c3 !important;
}

/* ==== TESTIMONIALS ==== */
.testimonials-teaser .testimonial-card {margin-bottom: 20px;}
.testimonial-card blockquote {
  color: #232a3a;
  border-color: #7e5d31;
  background: #faf9f7;
  font-size: 1.08rem;
  margin-bottom: 4px;
}
.testimonial-card strong {
  color: #7e5d31;
  font-weight: 700;
}

/* ==== FOOTER ==== */
footer {
  background: #fff;
  border-top: 1px solid var(--mp-grey);
  font-size: 0.97rem;
  margin-top: 40px;
  padding: 28px 0 22px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
footer .content-wrapper {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 38px;
}
footer nav {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}
footer nav a {
  color: #7e5d31;
  margin: 0 6px;
  font-size: 1rem;
}
footer nav a:hover {
  color: #232a3a;
  border-bottom: 1px dotted #232a3a;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.97rem;
  color: #58585a;
  margin-top: 8px;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 5px;
}
@media (max-width: 900px) {
  footer .content-wrapper { flex-direction: column; gap: 26px; }
}

/* ==== CONTENT ELEMENTS ==== */
.text-section {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.map-embed {
  margin-top: 8px;
  background: #faf9f7;
  border-radius: var(--mp-radius);
  padding: 18px 16px;
  text-align: left;
}

/* ==== BUTTONS (general for other use) ==== */
button, .button {
  font-family: inherit;
  font-size: 1rem;
  padding: 11px 24px;
  border-radius: 6px;
  border: none;
  background: var(--mp-secondary);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background .19s, color .12s, box-shadow .18s;
  box-shadow: 0 2px 10px 0 rgba(126,93,49,0.11);
}
button:hover, .button:hover, button:focus, .button:focus {
  background: #232a3a;
  color: #f6e4c3;
  outline: none;
}

/* ==== SPACING AND ALIGNMENT ==== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  section { padding: 28px 8px; margin-bottom: 36px; }
}

/* ==== GAP ENFORCEMENT FOR FLEX ==== */
.card-container, .content-grid, .feature-grid,
.text-image-section, .testimonial-card, .feature-item {
  gap: 20px;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2024;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff; /* minimal white */
  color: #232a3a;
  box-shadow: 0 -2px 20px 0 rgba(35,42,58,0.10);
  padding: 26px 22px 26px 24px;
  min-height: 76px;
  width: 100vw;
  font-size: 1rem;
  transition: transform 0.38s;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner-message { max-width: 600px; margin-right: 24px; }
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn {
  background: var(--mp-secondary);
  color: #fff;
  border-radius: 6px;
  border: none;
  padding: 9px 18px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background .16s, color .14s;
  min-width: 110px;
  outline: none;
}
.cookie-btn.cookie-settings {
  background: #f6e4c3;
  color: #232a3a;
  border: 1px solid #eedab1;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #232a3a;
  color: #f6e4c3;
}
.cookie-btn.cookie-settings:hover {
  background: #ffecca;
  color: #232a3a;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 8px;
  }
  .cookie-banner-message {
    margin-right: 0;
    max-width: 100%;
  }
  .cookie-banner-actions {
    gap: 8px;
    flex-wrap: wrap;
  }
}

/* ==== COOKIE MODAL ==== */
.cookie-modal {
  position: fixed;
  z-index: 3000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(35,42,58,.13);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .29s;
}
.cookie-modal.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal-content {
  background: #fff;
  color: #232a3a;
  border-radius: var(--mp-radius);
  padding: 38px 34px 28px 34px;
  min-width: 320px;
  max-width: 92vw;
  box-shadow: 0 10px 40px 0 rgba(35,42,58,0.23);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-family: 'Merriweather', serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid #f2f2f2;
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category label {
  font-weight: 500;
  color: #232a3a;
}
.cookie-category input[type="checkbox"] {
  accent-color: #7e5d31;
  width: 22px;
  height: 22px;
}
.cookie-modal-actions {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-modal-close {
  position: absolute;
  right: 18px; top: 18px;
  background: none;
  border: none;
  font-size: 1.35rem;
  color: #232a3a;
  cursor: pointer;
  transition: color .13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #7e5d31;
}
@media (max-width: 480px) {
  .cookie-modal-content {
    padding: 18px 8px 14px 8px;
    min-width: unset;
  }
}

/* ==== TABLES (if used) ==== */
table {
  border-collapse: collapse;
  margin-bottom: 24px;
  width: 100%;
}
th, td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid #eee;
}
th { background: #faf9f7; font-weight: 600; }

/* ==== FORM ELEMENTS (if present) ==== */
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 9px 12px;
  margin-bottom: 12px;
  background: #faf9f7;
  color: #232a3a;
  width: 100%;
  transition: border .13s, box-shadow .12s;
}
input:focus, select:focus, textarea:focus {
  border-color: #7e5d31;
  outline: none;
  box-shadow: 0 0 2px #7e5d3133;
}

label {
  font-size: 1rem;
  color: #232a3a;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

/* === MICRO-INTERACTIONS === */
.cta-primary, button, .button, .cookie-btn {
  transition: background .21s, color .13s, box-shadow .20s, outline .1s;
}
.card, .feature-grid > div, .testimonial-card {
  transition: box-shadow .19s;
}
a, .main-nav a, .mobile-nav a {
  transition: color .17s, border .14s;
}

/* ==== UTILITY CLASSES ==== */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }

/* ==== ACCESSIBILITY ==== */
a:focus, button:focus, .cookie-btn:focus,
.mobile-menu-toggle:focus, .cookie-modal-close:focus {
  outline: 2px dashed #7e5d31;
  outline-offset: 2px;
}

/* ==== OVERRIDE HR SPACINGS ON MOBILE ==== */
@media (max-width: 480px) {
  hr {margin: 24px 0;}
}

/* ==== END OF MurArt Prestige CSS ==== */
