/* RESET & FOUNDATION -------------------------------------------------------- */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F4EADA;
  color: #24393B;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
a {
  color: #1E3536;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C47C2A;
  outline: none;
}
ul, li {
  list-style: none;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* TYPOGRAPHY -------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #24393B;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.25rem;
  font-weight: 800;
  text-shadow: 0 2px 5px rgba(72,65,52,0.10);
  margin-bottom: 20px;
}
h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
}
h4 {
  font-size: 1rem;
}
.text-section, .content-wrapper, .feature-list, .services-grid, .workshop-list {
  font-size: 1rem;
}
blockquote {
  font-style: italic;
  background: #FFFDF5;
  color: #513919;
  border-left: 6px solid #C47C2A;
  margin-bottom: 10px;
  padding: 12px 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  border-radius: 8px 16px 16px 8px;
}
cite {
  display: block;
  text-align: right;
  font-size: 0.95em;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #775530;
  margin-top: 2px;
}

/* CONTAINER & SECTION -------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: stretch;
}

/* HEADER -------------------------------------------------------- */
header {
  background: #24393B;
  color: #F4EADA;
  box-shadow: 0 2px 10px rgba(54,38,18,0.07);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 5px rgba(60,50,41,0.07));
}
.main-nav {
  display: flex;
  gap: 24px;
}
.main-nav a {
  color: #F4EADA;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: color 0.22s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #C47C2A;
}
.btn-primary {
  background: #8DBAAF;
  border-radius: 28px 18px 34px 14px;
  color: #24393B;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing:1px;
  padding: 10px 28px;
  margin-left: 18px;
  box-shadow: 0 3px 12px -3px rgba(60,50,41,0.13);
  border: 2px solid #2E4C51;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #f0dfb8;
  color: #1E3536;
  box-shadow: 0 4px 24px -4px rgba(180,153,99,0.2);
  border-color: #C47C2A;
}
.btn-secondary {
  background: #F4EADA;
  border-radius: 18px 28px 12px 34px;
  color: #24393B;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.7px;
  padding: 9px 22px;
  border: 2px solid #8DBAAF;
  margin-top: 10px;
  margin-bottom: 8px;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #8DBAAF;
  color: #F4EADA;
  border-color: #24393B;
}

/* MOBILE MENU -------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 18px;
  background: #8DBAAF;
  color: #24393B;
  font-size: 2.2rem;
  width: 48px;
  height: 48px;
  z-index: 120;
  border-radius: 50%;
  box-shadow: 0 2px 7px rgba(36,57,59,0.14);
  border: 2px solid #626262;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #C47C2A;
  color: #FFFDF5;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #f3e2c4;
  box-shadow: 0 4px 20px rgba(36,57,59,0.10);
  transform: translateX(-100vw);
  opacity: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 26px 24px 26px;
  transition: transform 0.38s cubic-bezier(.9,-0.05,.98,.36), opacity 0.32s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: #C47C2A;
  color: #F4EADA;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height:44px;
  align-self: flex-end;
  margin-bottom: 16px;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #24393B;
  color: #FDE9BB;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 14px;
  width: 100%;
}
.mobile-nav a {
  color: #24393B;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: #E7DAC2;
  padding: 12px 14px;
  border-radius: 18px;
  box-shadow: 0 1px 4px rgba(60,50,41,0.09);
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #C47C2A;
  color: #FFFDF5;
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
}

/* HERO / HEADLINE SECTION -------------------------------------------------------- */
.hero {
  background: repeating-linear-gradient(135deg, #F4EADA 0 18px, #eedab0 19px 36px);
  border-radius: 22px 58px 38px 18px;
  padding: 40px 22px 40px 32px;
  box-shadow: 0 6px 42px -10px rgba(185,143,58,0.13);
  margin-bottom: 18px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  right: 35px;
  top: 35px;
  width: 72px;
  height: 72px;
  background: url('../assets/retro-star.svg') no-repeat center/contain;
  opacity: 0.17;
  pointer-events: none;
}
.hero h1 {
  color: #C47C2A;
  text-shadow: 1px 2px 10px #F4EADA, 0 1px 0 #fff2ec;
}
.hero h2 {
  color: #24393B;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.07rem;
  color: #513919;
  margin-bottom: 24px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* FEATURE LIST / RETRO ICON CARDS -------------------------------------------------------- */
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 14px;
  justify-content: space-between;
}
.feature-list li {
  background: #FFFDF5;
  border-radius: 26px 18px 26px 14px;
  box-shadow: 0 3px 14px -4px rgba(167,130,80,0.10);
  border: 2px dashed #C47C2A;
  padding: 22px 18px 18px 18px;
  flex: 1 1 260px;
  min-width: 230px;
  position: relative;
  transition: box-shadow 0.22s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}
.feature-list li img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-bottom: 5px;
}
.feature-list li:hover, .feature-list li:focus-within {
  box-shadow: 0 6px 28px -4px rgba(211, 161,79, 0.16);
  border-color: #8DBAAF;
}

/* SERVICES GRID & CARDS -------------------------------------------------------- */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 22px;
}
.service-card {
  background: #e2d2bd;
  border-radius: 18px 48px 16px 26px;
  box-shadow: 0 2px 12px -4px rgba(133,116,90,0.14);
  border: 2px solid #8DBAAF;
  flex: 1 1 260px;
  min-width: 230px;
  max-width: 320px;
  padding: 24px 22px 18px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  transition: box-shadow 0.23s, border 0.23s;
}
.service-card h2, .service-card h3 {
  color: #24393B;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.service-card p {
  font-size: 1rem;
  color: #3C2F21;
  margin-bottom: 2px;
}
.service-card .service-price {
  margin-top: 6px;
  font-weight: 800;
  color: #C47C2A;
  font-size: 1.15rem;
  font-family: 'Montserrat', serif;
}
.service-card .btn-secondary {
  margin-top: 10px;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 8px 36px -6px rgba(180,153,99,0.22);
  border-color: #C47C2A;
  z-index: 1;
}

/* TESTIMONIALS -------------------------------------------------------- */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 12px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #FFFDF5;
  border-radius: 26px 18px 14px 38px;
  border: 2px solid #8DBAAF;
  box-shadow: 0 4px 14px -4px rgba(72,65,52,0.10);
  padding: 22px 20px;
  min-width: 240px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, border 0.22s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 22px -2px rgba(167,130,80,0.18);
  border-color: #C47C2A;
}
.testimonial-card blockquote {
  background: none;
  color: #513919;
  border: none;
  font-size: 1.04rem;
  margin-bottom: 4px;
  line-height: 1.35;
  padding: 0;
}
.testimonial-card cite {
  color: #8DBAAF;
  font-weight: 600;
  font-size: 0.97em;
  letter-spacing: 0.2px;
}

/* FOOTER -------------------------------------------------------- */
footer {
  background: #24393B;
  color: #F4EADA;
  padding: 38px 0 0 0;
  margin-top: 60px;
  border-top: 12px double #C47C2A;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #F4EADA;
  text-decoration: underline;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #e2d2bd;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  justify-content: center;
  margin: 0 auto;
}
.footer-brand img {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 1px 1px rgba(36,57,59,0.10));
}
.footer-brand span {
  font-size: 0.95rem;
  color: #f4eadabb;
}


/* ADDITIONAL COMPONENTS -------------------------------------------------------- */
.text-section {
  margin-bottom: 20px;
  font-size: 1.03rem;
}
.address-map {
  background: #f5eacb;
  padding: 14px 18px;
  border-radius: 16px 20px 16px 10px;
  font-size: 0.97em;
  margin-bottom: 13px;
}
.office-hours {
  background: #efecd8;
  border-radius: 14px 30px 12px 18px;
  margin-top: 12px;
  padding: 10px 16px;
  font-weight: 700;
  color: #775530;
}
.contact-details ul {
  margin-top: 6px;
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.45;
  color: #3C2F21;
}
.contact-details strong {
  color: #8DBAAF;
}
.success-stories {
  background: #F5EBDD;
  padding: 20px 16px 16px 20px;
  border-radius: 18px 28px 12px 18px;
  font-size: 1rem;
  margin-top: 20px;
  margin-bottom: 12px;
}
.success-stories h3 {
  color: #775530;
  margin-bottom: 9px;
}
.success-stories ul {
  padding-left: 18px;
}

/* RESPONSIVE --------------------------------------------------------------- */
@media (max-width: 900px) {
  .feature-list, .services-grid, .testimonials {
    gap: 16px;
  }
  .container {
    max-width: 99vw;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 20px;
  }
  .section {
    padding: 24px 6px;
    margin-bottom: 38px;
  }
  .feature-list, .services-grid, .testimonials {
    flex-direction: column;
    gap: 16px;
  }
  .feature-list li, .service-card, .testimonial-card {
    min-width: 0;
    max-width: 100%;
    flex: 1 1 100%;
  }
  .main-nav {
    display: none !important;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
    min-width: 0;
  }
  .hero {
    padding: 22px 10px 22px 14px;
    border-radius: 18px 38px 18px 8px;
  }
  .address-map, .office-hours, .success-stories {
    padding: 10px 9px;
    border-radius: 12px 16px 10px 7px;
  }
}
@media (max-width: 520px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero h2, h2 {
    font-size: 1.16rem;
  }
}

/* CARD LAYOUTS ------------------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #efecd8;
  border-radius: 24px 16px 22px 14px;
  box-shadow: 0 1px 6px -2px rgba(180,153,99,0.11);
  margin-bottom: 20px;
  padding: 20px 14px;
  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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* SPACING BETWEEN ALL SECTIONS/CARDS ------------------------------------ */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card, .service-card, .testimonial-card, .feature-list > li {
  margin-bottom: 20px;
}

/* BUTTON INTERACTION & MICRO-ANIMATIONS --------------------------------- */
.btn-primary, .btn-secondary {
  cursor: pointer;
  outline: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, transform 0.12s;
}
.btn-primary:active, .btn-secondary:active {
  transform: translateY(2px) scale(0.98);
}
.service-card .btn-secondary:active {
  transform: translateY(1px) scale(0.98);
}

/* RETRO ELEMENTS: BORDERS, PATTERNS, SHADOWS ------------------------------ */
.feature-list li, .service-card, .testimonial-card, .card {
  box-shadow: 0 2px 11px -4px rgba(136,95,49,0.11);
  border: 2px solid #e2d2bd;
}
.feature-list li {
  border-style: dashed;
}
.testimonial-card, .feature-list li {
  border-color: #8DBAAF;
}
.service-card, .card {
  border-color: #C47C2A;
}

/* SCROLLBAR (retro style) ------------------------------------------------- */
::-webkit-scrollbar {
  width: 12px;
  background: #F4EADA;
}
::-webkit-scrollbar-thumb {
  background: #C47C2A;
  border-radius: 8px;
  border: 3px solid #F4EADA;
}

/* COOKIE CONSENT BANNER ------------------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #FFFDF5;
  color: #3E2E1A;
  border-top: 3px solid #C47C2A;
  box-shadow: 0 -3px 18px rgba(36,57,59,0.10);
  padding: 18px 14px 18px 22px;
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  animation: cookieBannerSlideUp 0.5s cubic-bezier(0.3, 0.53, 0.6, 0.94);
  box-sizing: border-box;
}
@keyframes cookieBannerSlideUp {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 16px;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.97rem;
  border-radius: 18px 28px 12px 34px;
  padding: 7px 22px;
  border: 2px solid transparent;
  background: #8DBAAF;
  color: #24393B;
  margin-left: 0;
  margin-right: 0;
  font-weight: 700;
  box-shadow: 0 2px 8px -4px rgba(36,57,59,0.10);
  transition: background 0.2s, border 0.2s, color 0.2s;
}
.cookie-consent-banner button.accept {
  background: #8DBAAF;
  border-color: #8DBAAF;
}
.cookie-consent-banner button.reject {
  background: #F5EBDD;
  color: #775530;
  border: 2px solid #C47C2A;
}
.cookie-consent-banner button.settings {
  background: #FFF2E1;
  color: #24393B;
  border: 2px solid #8DBAAF;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: #C47C2A;
  color: #FFFDF5;
  border-color: #24393B;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 7px 12px 10px;
    gap: 12px;
    font-size: 0.99em;
  }
}
/* COOKIE MODAL ------------------------------------------------------------ */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(36,57,59,0.12);
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFadeIn 0.24s cubic-bezier(.6,.37,.62,1.41);
}
@keyframes cookieModalFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #FFFDF5;
  border-radius: 22px 38px 22px 10px;
  box-shadow: 0 6px 36px -6px rgba(180,153,99,0.21);
  padding: 36px 32px 30px 32px;
  border: 2px solid #8DBAAF;
  z-index: 4000;
  width: 95vw;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal h2 {
  color: #24393B;
  margin-bottom: 12px;
  text-align: left;
  font-size: 1.24rem;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.cookie-modal .category-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #8DBAAF;
  border: 2px solid #C47C2A;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  margin-right: 8px;
  transition: background 0.2s, border 0.2s;
}
.cookie-modal .category-toggle[aria-checked="false"] {
  background: #ebe2ce;
  border-color: #8DBAAF;
  color: #74591f;
}
.cookie-modal .category-toggle[aria-checked="true"] {
  background: #C47C2A;
  border-color: #24393B;
  color: #FFFDF5;
}
.cookie-modal .category-toggle[disabled],
.cookie-modal .category-toggle[aria-disabled="true"] {
  opacity: 0.6;
  cursor: default;
  background: #f3eee1;
  color: #C47C2A;
  border-style: dotted;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 9px 26px;
  border-radius: 18px 14px 18px 16px;
  border: 2px solid #8DBAAF;
  background: #8DBAAF;
  color: #24393B;
  font-weight: 700;
  transition: background 0.16s, color 0.16s;
}
.cookie-modal .modal-actions button:hover, .cookie-modal .modal-actions button:focus {
  background: #C47C2A;
  color: #FFFDF5;
  border-color: #24393B;
}
@media (max-width: 430px) {
  .cookie-modal {
    padding: 13px 7px 14px 10px;
    border-radius: 10px 16px 11px 7px;
    font-size: 0.97rem;
    max-width: 98vw;
  }
  .cookie-modal .modal-actions {
    gap: 6px;
  }
}

/* FORM STYLES ------------------------------------------------------- */
input, textarea, select {
  font-family: inherit;
  background: #fcf8ed;
  color: #24393B;
  border-radius: 10px 24px 8px 18px;
  border: 2px solid #8DBAAF;
  padding: 10px 14px;
  font-size: 1rem;
  margin-bottom: 12px;
  transition: border 0.18s;
  width: 100%;
  max-width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: #C47C2A;
  outline: none;
}

/* ADDITIONAL RETRO DECORATIVE ELEMENTS ----------------------------------- */
.card::before, .service-card::before {
  content: '';
  display: block;
  position: absolute;
  left: 10px;
  top: -12px;
  width: 36px;
  height: 10px;
  background: repeating-linear-gradient(90deg, #C47C2A 0 5px, transparent 5px 12px);
  opacity: 0.22;
}

/* PRINT FRIENDLY --------------------------------------------- */
@media print {
  header, footer, .mobile-menu-toggle, .cookie-consent-banner, .cookie-modal-overlay {
    display: none !important;
  }
  main, .container {
    padding: 0 !important;
    margin: 0 !important;
  }
}
