/* --- CSS RESET & NORMALIZATION (mobile-first) --- */
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;
}
body {
  line-height: 1.6;
  background: #F5F6FA;
  color: #232A34;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  /* Art splash background (subtle): */
  background-image: radial-gradient(circle at 60% 0, #fce9ef 10%, transparent 60%), radial-gradient(circle at 20% 100%, #e5f0fb 10%, transparent 60%);
  background-repeat: no-repeat;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: #A72538;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #232A34;
  outline: none;
}

/* --- BRAND FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-transform: none;
  letter-spacing: -1px;
  color: #232A34;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.subheadline {
  font-size: 1.2rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #A72538;
  font-weight: 500;
  margin-bottom: 24px;
}
p {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #232A34;
}
strong, b {
  font-weight: 700;
  color: #A72538;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.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;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(167, 37, 56, 0.07);
  overflow: hidden;
  transition: transform 0.24s cubic-bezier(0.52, 1, 0.78, 1), box-shadow 0.24s;
}
.card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 32px rgba(167, 37, 56, 0.13);
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 18px;
  gap: 10px;
}

/* --- FEATURE ITEMS, GRIDS & FLEX ITEMS --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(35, 42, 52, 0.08);
  padding: 24px 16px;
  width: 100%;
  max-width: 320px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.21s;
}
.feature-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 12px rgba(35,42,52,0.08);
  padding: 22px 16px;
  flex: 1 1 260px;
  min-width: 210px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.16s;
  z-index: 1;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 32px rgba(167,37,56,0.11);
  transform: translateY(-3px) scale(1.015);
  z-index: 2;
}
.feature-grid img, .timeline img {
  height: 42px;
  width: 42px;
  object-fit: contain;
  margin-bottom: 10px;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}
.timeline > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(35,42,52,0.07);
  padding: 24px 16px;
  flex: 1 1 270px;
  min-width: 200px;
  max-width: 350px;
  margin-bottom: 20px;
  position: relative;
  text-align: left;
  z-index: 1;
}
.story-snippets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.project-highlights ul, .review-highlights ul {
  list-style: disc inside;
  color: #232A34;
  font-size: 1rem;
  padding-left: 16px;
  margin: 10px 0 2px 4px;
}

/* --- HEADER --- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 6px rgba(35,42,52,0.04);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px 12px 8px;
  gap: 18px;
}
.logo {
  height: 52px;
  width: auto;
  margin-right: 12px;
  display: block;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #232A34;
  padding: 5px 9px;
  position: relative;
  border-radius: 5px;
  transition: color 0.18s, background 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #a7253820;
  color: #A72538;
}

/* --- PRIMARY BUTTONS --- */
.btn-primary, .main-nav a.active {
  display: inline-flex;
  align-items: center;
  background: #A72538;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  border: none;
  padding: 11px 26px;
  border-radius: 28px;
  box-shadow: 0 3px 18px rgba(167,37,56,0.08);
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.17s, box-shadow 0.19s, transform 0.18s;
  text-decoration: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #232A34;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 7px 28px rgba(35,42,52,0.10);
  outline: none;
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  background: #A72538;
  color: #fff;
  font-size: 2.3rem;
  border: none;
  border-radius: 6px;
  padding: 2px 13px 7px 13px;
  cursor: pointer;
  display: none;
  z-index: 105;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-toggle:focus {
  background: #232A34;
  color: #fff;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-110vw);
  transition: transform 0.41s cubic-bezier(.63,.04,.32,.97);
  box-shadow: 0 4px 48px rgba(35,42,52,0.12);
  padding-top: 20px;
  min-width: 100vw;
  min-height: 100vh;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: #A72538;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  margin: 6px 26px 0 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #232A34;
  color: #fff;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 34px 30px;
  gap: 20px;
  width: 100vw;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #232A34;
  padding: 10px 0;
  border-radius: 6px;
  margin-bottom: 2px;
  background: none;
  transition: background 0.16s, color 0.16s;
  width: 100%;
  display: block;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #a7253838;
  color: #A72538;
}

/* --- HERO SECTIONS --- */
main section:first-of-type {
  background: #fff6fa;
  border-radius: 0 0 48px 48px;
  box-shadow: 0 0 0 0 rgba(0,0,0,0.03);
  margin-bottom: 60px;
  padding-top: 40px;
  padding-bottom: 44px;
}
main section:first-of-type .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
main section:first-of-type h1 {
  color: #A72538;
  font-size: 2.7rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 15px;
  /* Artistic text shadow */
  text-shadow: 0 2px 14px #f5f6fa, 1px 2px 0 #F5F6FA;
}
main section:first-of-type .btn-primary {
  margin-top: 18px;
}

/* --- SECTIONS AND CARDS --- */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card {
  margin-bottom: 20px;
}

/* --- ABOUT PAGE, VALUES LIST, QUALITY ICONS --- */
.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-top: 16px;
  margin-bottom: 18px;
}
.values-list li {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 12px 18px;
  gap: 18px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #232A34;
  box-shadow: 0 1px 6px rgba(167, 37, 56, 0.07);
  min-width: 200px;
}
.values-list li img {
  height: 32px;
  width: 32px;
  object-fit: contain;
}
.quality-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}
.quality-icons img {
  height: 34px;
  width: 34px;
}
.quality-icons span {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #A72538;
  padding-left: 4px;
}

/* --- TESTIMONIAL CARDS --- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(35,42,52,0.08);
  border-radius: 16px;
  max-width: 370px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  color: #232A34;
  font-size: 1.07rem;
  position: relative;
  transition: box-shadow 0.19s, transform 0.17s;
  z-index: 1;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(167, 37, 56, 0.12);
  transform: scale(1.02) translateY(-2px);
  z-index: 2;
}
.testimonial-card p,
.testimonial-card .testimonial-meta {
  color: #232A34;
  line-height: 1.55;
}
.testimonial-meta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  color: #A72538;
}
.review-highlights ul {
  margin-top: 14px;
}

/* --- FOOTER --- */
footer {
  background: #232A34;
  color: #fff;
  padding: 38px 0 24px 0;
  border-radius: 40px 40px 0 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  justify-content: center;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
}
.footer-menu a {
  color: #fff;
  text-decoration: underline;
  font-size: 1rem;
  font-family: 'Roboto',Arial,sans-serif;
  opacity: 0.95;
  transition: color 0.15s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #F5F6FA;
  opacity: 1;
  outline: none;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 18px;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.97rem;
  margin-bottom: 6px;
  opacity: 0.88;
}
.footer-contact img {
  height: 20px;
  width: 20px;
  object-fit: contain;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.footer-social a {
  display: flex;
  align-items: center;
}
.footer-social img {
  height: 30px;
  width: 30px;
  filter: grayscale(0.5) brightness(1.2);
  transition: filter 0.17s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: none;
  outline: none;
}

/* --- FORMS & LISTS --- */
ul {
  padding-left: 0;
  margin-bottom: 10px;
}
ul li {
  margin-bottom: 10px;
  color: #232A34;
  font-size: 1.02rem;
  position: relative;
  padding-left: 28px;
}
ul li:before {
  content: '\2022';
  color: #A72538;
  font-size: 1.1em;
  position: absolute;
  left: 0.1em;
  top: 2px;
}
ul.values-list li:before,
ul.footer-contact li:before {
  content: '';
  display: none;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* --- CUSTOM & UNIQUE VISUAL ELEMENTS --- */
.map-embed {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 14px;
  min-width: 240px;
  margin: 10px 0 20px 0;
  gap: 13px;
  box-shadow: 0 2px 16px rgba(167,37,56,0.09);
  padding: 26px 16px;
}
.map-embed img {
  width: 56px;
  height: 56px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #232A34;
  color: #fff;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 8px 18px 8px;
  box-shadow: 0 -4px 32px rgba(35,42,52,0.18);
  font-size: 1.04rem;
  animation: cookie-slide-in 0.55s cubic-bezier(.55,.06,.61,.93);
}
@keyframes cookie-slide-in {
  0% { opacity:0; transform: translateY(80px); }
  100% { opacity:1; transform: translateY(0); }
}
.cookie-banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 290px;
  gap: 15px;
  max-width: 700px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.cookie-btn {
  background: #A72538;
  color: #fff;
  padding: 9px 22px;
  border-radius: 22px;
  font-family: 'Montserrat', Arial,sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 1.02rem;
  transition: background 0.11s, color 0.13s, transform 0.12s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff;
  color: #A72538;
  transform: scale(1.03);
  outline: none;
}
.cookie-btn.cookie-settings {
  background: none;
  border: 2px solid #fff;
  color: #fff;
  padding: 8px 18px;
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: #fff;
  color: #A72538;
}

/* --- COOKIE CONSENT MODAL--- */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,42,52,0.73);
  animation: fadeIn 0.22s;
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -60px);
  z-index: 1002;
  background: #fff;
  color: #232A34;
  border-radius: 14px;
  box-shadow: 0 8px 38px rgba(167,37,56,0.16);
  min-width: 340px;
  max-width: 94vw;
  padding: 36px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: modalSlideIn 0.34s cubic-bezier(.61,.01,.63,.88);
}
@keyframes modalSlideIn {
  0% { opacity:0; transform: translate(-50%, 40px); }
  100% { opacity:1; transform: translate(-50%, -60px); }
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 10px;
}
.cookie-label {
  flex: 1 1 auto;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial,sans-serif;
  color: #232A34;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 41px;
  height: 23px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #E3E8F0;
  border-radius: 25px;
  transition: background .17s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #A72538;
}
.cookie-slider:before {
  content: "";
  position: absolute;
  left: 3px; top: 3px;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  transition: transform .13s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(18px);
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  margin-bottom: 9px;
}
.cookie-modal-close {
  position: absolute;
  top: 15px; right: 20px;
  background: #A72538;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px; height: 40px;
  font-size: 1.30rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #232A34;
  outline: none;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1080px) {
  .container { max-width: 960px; }
  .feature-grid > div, .timeline > div { max-width: 250px; }
  .testimonial-card { max-width: 310px; }
}

@media (max-width: 900px) {
  header .container { flex-wrap: wrap; gap:10px; padding: 12px 8px; }
  .main-nav { gap: 12px; }
  .feature-grid > div, .timeline > div { min-width:160px; max-width: 100%; }
  .testimonial-slider { gap:16px; }
  .testimonial-card { max-width: 95%; }
}
@media (max-width: 768px) {
  .container { max-width: 95vw; }
  header .container { flex-wrap: wrap; gap:10px; }

  .main-nav { display: none; }
  .mobile-menu-toggle { display: inline-block; }
  .btn-primary { margin-left: auto; }
  .content-wrapper, .content-grid, .feature-grid, .timeline,
  .card-container { flex-direction: column; gap: 20px; }
  .story-snippets { gap:8px; }
  .footer-contact, .footer-social {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-menu {
    gap: 10px;
    margin-bottom: 4px;
  }
  .footer-social { gap: 8px; }
  .map-embed { min-width: unset; padding: 18px 8px; }
  main section:first-of-type h1 { font-size: 2rem; margin-bottom:12px; }
  .section, section { padding: 26px 8px; }
  .project-highlights ul, .review-highlights ul { font-size: 0.98rem; }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  body { font-size: 15px; }
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.09rem; }
  .btn-primary, .cookie-btn { font-size: .99rem; padding:7px 14px; }
  .mobile-nav a { font-size: 1.12rem; padding: 8px 0; }
  .timeline > div, .feature-grid > div { padding: 14px 10px; }
  .cookie-modal { padding: 20px 7px 16px 7px; min-width: unset; }
}

/* --- ARTISTIC / CREATIVE STYLE EFFECTS --- */
.section h2 {
  color: #A72538;
  background: linear-gradient(90deg, #F5F6FA 70%, #e9eaff 94%);
  display: inline-block;
  padding: 2px 16px 4px 7px;
  border-radius: 16px 42px 16px 7px;
  box-shadow: 0 2px 18px rgba(35,42,52,0.06);
  margin-bottom: 28px;
}
.card, .feature-grid > div, .timeline > div {
  border-bottom: 4px solid #A72538;
  box-shadow: 0 2px 10px rgba(167,37,56,0.05);
}
.feature-grid > div {
  border-left: 4px solid #232A34;
}
.testimonial-card {
  border-left: 6px solid #A72538;
}

/* --- MICRO-INTERACTIONS --- */
.btn-primary, .cookie-btn, .main-nav a, .mobile-nav a, .card, .feature-grid > div, .testimonial-card {
  transition: background 0.18s, box-shadow 0.19s, transform 0.15s, color 0.15s;
}

/* --- VISUAL HIERARCHY & SPACING --- */
.section, section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* --- UTILITY CLASSES (if needed) --- */
.hide-mobile { display: block; }
@media (max-width: 768px) {.hide-mobile { display: none; }}
.show-mobile { display: none; }
@media (max-width: 768px) { .show-mobile { display: block; }}

/* --- OVERRIDES & ACCESSIBILITY --- */
:focus-visible {
  outline: 2px solid #A72538;
  outline-offset: 2px;
}

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