/* RESET & NORMALIZE */
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; margin: 0; padding: 0; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote, dl, dd { margin: 0; }
ul, ol { padding-left: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
:focus { outline: 2px solid #2B3340; outline-offset: 2px; }

/* BRAND COLORS AND FONTS */
:root {
  --color-primary: #2B3340;
  --color-secondary: #B6A080;
  --color-accent: #F5F3ED;
  --color-art-coral: #F7605F;
  --color-art-blue: #4A90E2;
  --color-art-green: #0ECC6B;
  --color-text-heading: #2B3340;
  --color-text-body: #44392B;
  --color-shadow: rgba(43, 51, 64, 0.08);
  --color-card-bg: #fff;
  --border-radius-lg: 24px;
  --border-radius: 14px;
  --border-radius-sm: 7px;
  --transition: 0.3s cubic-bezier(.55, .08, .68, .53);
  --shadow-1: 0 4px 28px 0 var(--color-shadow);
  --shadow-hover: 0 8px 32px 0 rgba(43, 51, 64, 0.15);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Lato', Arial, Helvetica, sans-serif;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-body);
  background: var(--color-accent);
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-text-heading);
  letter-spacing: 0.01em;
  font-weight: 700;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 14px; }
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.05rem; }
}

p, li, blockquote { font-size: 1rem; margin-bottom: 12px; }
blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-art-coral);
  background: #FFF8F6;
  border-left: 4px solid var(--color-secondary);
  padding: 18px 28px;
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  font-style: italic;
}

strong { color: var(--color-art-blue); font-weight: 700; }
em { color: var(--color-art-green); }


/* PAGE CONTAINER & SECTION STYLING */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px; padding-right: 20px;
}
.section { margin-bottom: 60px; padding: 40px 20px; }
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--color-card-bg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-1);
  padding: 40px 32px;
  margin-bottom: 30px;
}
@media (max-width: 768px){
  .content-wrapper {
    padding: 22px 11px;
    border-radius: var(--border-radius);
  }
  .section {padding: 28px 4px; margin-bottom: 35px;}
}

/* FLEXBOX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: var(--color-card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-1);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px) scale(1.025);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-grid { flex-direction: column; gap: 18px; }
  .card-container { flex-direction: column; gap: 16px; }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 28px 24px;
  background: #FFF8F6;
  border: 2px solid var(--color-secondary);
  border-radius: var(--border-radius-lg);
  margin-bottom: 20px;
  box-shadow: 0 6px 24px 0 rgba(43,51,64,0.09);
  color: #1E2026;
  font-style: italic;
  font-size: 1.08rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  border-color: var(--color-art-coral);
  box-shadow: var(--shadow-hover);
}
.testimonial-card span {
  color: var(--color-primary);
  font-style: normal;
  font-weight: 600;
  align-self: flex-end;
  font-size: 0.97em;
}
@media (max-width: 600px) {
  .testimonial-card {padding: 16px 10px;}
}

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

/* BUTTON STYLES */
.main-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-art-coral);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: var(--border-radius);
  padding: 13px 32px;
  margin-top: 20px;
  box-shadow: 0 3px 15px 0 rgba(247,96,95,0.11);
  transition: background 0.19s, box-shadow 0.25s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.main-cta:hover, .main-cta:focus {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.045);
  box-shadow: 0 8px 32px 0 rgba(43,51,64,0.13);
}

a.button, button.button {
  display: inline-flex;
  align-items: center;
  background: var(--color-art-blue);
  color: #fff;
  border-radius: var(--border-radius-sm);
  padding: 11px 26px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 10px;
  transition: background 0.19s, box-shadow 0.22s;
  border: none;
  box-shadow: 0 2px 10px 0 rgba(74,144,226,0.10);
}
a.button:hover, button.button:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}

/* LINKS */
a { color: var(--color-art-blue); text-decoration: underline dotted var(--color-art-coral) 1px;  }
a:hover, a:focus { color: var(--color-art-coral); }
.footer-nav a { color: var(--color-secondary); text-decoration: underline; margin: 0 5px; }
.footer-nav a:hover {color: var(--color-art-coral);}

/* NAVIGATION & HEADER */
header {
  background: var(--color-card-bg);
  box-shadow: 0 2px 10px 0 rgba(43,51,64,0.08);
  margin-bottom: 25px;
  position: relative;
  z-index: 10;
}
.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 20px 14px 20px;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-primary);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  font-size: 1rem;
  transition: color 0.18s, border-color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-art-coral);
  border-bottom: 2px solid var(--color-art-coral);
}
@media (max-width: 1024px) {
  .main-nav {gap: 12px;}
}
@media (max-width: 768px) {
  .main-nav { display: none; }
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--color-art-coral);
  color: #fff;
  border-radius: 100px;
  font-size: 2.1rem;
  padding: 5px 15px;
  box-shadow: 0 2px 12px 0 rgba(247,96,95,0.12);
  margin-left: 5px;
  z-index: 106;
  transition: background 0.2s, color 0.2s, box-shadow 0.3s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus { background: var(--color-art-blue); color: #fff; }
@media (max-width: 768px) {
  .mobile-menu-toggle { display: block; }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-card-bg);
  box-shadow: 12px 0 44px 0 rgba(43,51,64,0.19);
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.73,.09,.37,.93);
  z-index: 150;
  padding: 28px 36px 18px 30px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--color-art-coral);
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  border-radius: 100px;
  padding: 2px 18px 2px 14px;
  margin-bottom: 18px;
  transition: background 0.23s, color 0.23s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-art-blue);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 18px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-primary);
  padding: 8px 0;
  font-weight: 600;
  transition: color 0.18s, background 0.20s;
  border-radius: var(--border-radius-sm);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-art-coral);
  background: #FEE9E9;
  padding-left: 10px;
}
@media (min-width: 769px) {
  .mobile-menu {display: none !important;}
}

/* COOKIES BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--color-primary);
  color: #f7f7f7;
  padding: 22px 36px 20px 24px;
  box-shadow: 0 -4px 20px 0 rgba(43,51,64,0.13);
  z-index: 5000;
  font-size: 1rem;
}
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 13px 12px 11px 12px; }
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  background: var(--color-art-coral);
  color: #fff;
  border-radius: var(--border-radius-sm);
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 9px 18px;
  transition: background 0.21s, color 0.13s;
  margin: 0 2px;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 7px 0 rgba(247,96,95,0.11);
}
.cookie-banner .button-reject {
  background: #fff;
  color: var(--color-art-coral);
  border: 1px solid var(--color-art-coral);
}
.cookie-banner .button-settings {
  background: var(--color-art-blue);
  color: #fff;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(43,51,64,0.43);
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: var(--color-accent);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 7px 42px 0 rgba(43,51,64,0.21);
  padding: 32px 24px 26px 30px;
  max-width: 390px;
  color: var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  opacity: 1;
  transition: opacity 0.22s, transform 0.22s;
  transform: translateY(28px);
}
.cookie-modal-overlay.open .cookie-modal {
  opacity: 1;
  transform: translateY(0);
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--color-art-blue);
  color: #fff;
  border-radius: 100px;
  font-size: 1.26rem;
  font-family: var(--font-display);
  padding: 2px 15px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  z-index: 50;
  transition: background 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--color-art-coral);
}
.cookie-modal h3 {
  font-size: 1.19rem;
  letter-spacing: 1px;
  margin-bottom: 7px;
  color: var(--color-art-coral);
  font-family: var(--font-display);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-family: var(--font-body);
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--color-art-coral);
  width: 18px; height: 18px;
}
.cookie-category-essential input[type='checkbox'] {
  accent-color: var(--color-art-green);
}
.cookie-category-essential label {font-weight: bold; color: var(--color-primary);}
.cookie-modal-actions {
  display: flex; gap: 12px; justify-content: flex-end;
}
.cookie-modal-actions button {
  background: var(--color-art-coral);
  color: #fff;
  border-radius: var(--border-radius-sm);
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 9px 18px;
  border: none;
  cursor: pointer;
  transition: background 0.21s, color 0.13s;
}

/* FOOTER */
footer {
  padding: 35px 0 20px 0;
  background: var(--color-card-bg);
  box-shadow: 0 -2px 8px 0 rgba(43,51,64,0.05);
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: center;
}
.footer-nav a { padding: 0 2px; }

/* ARTISTIC ELEMENTS & MICRO-INTERACTIONS */
.content-wrapper, .card, .testimonial-card {
  /* abstract artistic brush effect shadow overrides */
  box-shadow: 0 7px 42px 0 rgba(182,160,128,0.11), 0 2px 10px 0 rgba(43,51,64,0.14);
}
.card:before, .testimonial-card:before {
  content: '';
  position: absolute;
  left: 14px; bottom: 10px;
  width: 80px; height: 24px;
  border-radius: 36px 18px 13px 50px;
  background: var(--color-art-green);
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
  filter: blur(2px);
}
.card:after, .testimonial-card:after {
  content: '';
  position: absolute;
  right: 13px; top: 10px;
  width: 44px; height: 10px;
  border-radius: 24px 9px 23px 17px;
  background: var(--color-art-coral);
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
  filter: blur(1.5px);
}

/* LINKS IN PARAGRAPHS */
p a {
  color: var(--color-art-blue);
  text-decoration: underline dotted var(--color-art-blue) 1.5px;
  transition: color 0.15s;
}
p a:hover { color: var(--color-art-coral); text-decoration: underline solid var(--color-art-coral) 2px; }

/* TYPOGRAPHY SCALE */
.display-1 { font-size: 3rem; font-family: var(--font-display); font-weight: 800; }
.display-2 { font-size: 2rem; font-family: var(--font-display); font-weight: 700; }
@media (max-width: 768px) {
  .display-1 { font-size: 2.15rem; }
  .display-2 { font-size: 1.2rem; }
}

/* SPACING */
.section > .container { margin-bottom: 0; }
.section  {margin-bottom: 60px; padding: 40px 20px;}
.card, .testimonial-card, .content-wrapper {margin-bottom: 20px;}

/* RESPONSIVENESS */
@media (max-width: 500px) {
  .display-1, h1 { font-size: 1.29rem; }
  .container { padding-left: 5px; padding-right: 5px; }
}

@media (max-width: 400px) {
  .main-cta, a.button, button.button {padding: 10px 7vw; font-size:1em;}
}

/* ANIMATION CLASSES */
.slide-in {
  animation: slideInFromLeft 0.4s cubic-bezier(.77,.18,.34,1.08) both;
}
@keyframes slideInFromLeft {
  0% {opacity:0;transform:translateX(-64px);}
 100%{opacity:1;transform:translateX(0);}
}


/* ACCESSIBILITY & UTILITY */
.sr-only {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* DIALOG POLISH */
[role='dialog'] {
  outline: none;
}

/* HIGHLIGHTED SECTIONS */
.content-wrapper.highlight {
  border: 2px solid var(--color-secondary);
  background: #F5EEF6;
}

/* SPECIAL THEME OVERLAYS */
.artistic-accent {
  font-family: var(--font-display);
  color: var(--color-art-coral);
  background: #fff7f6;
  border-radius: var(--border-radius-sm);
  padding: 3px 10px 2px 10px;
  font-weight: bold;
}

/* ARTISTIC FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700,900&display=swap');

/* END OF CSS */
