/* CSS Reset and Normalize for Vintage Retro style */
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.6;
  background: #F8F7F3;
  color: #234957;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  letter-spacing: 0.01em;
}

img, picture {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}

a {
  color: #234957;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:active {
  outline: 2px dotted #234957;
  outline-offset: 2px;
}

ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #234957;
  font-weight: 700;
  letter-spacing: 0.03em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.13;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.18;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

strong {
  font-weight: 800;
}

/* Containers and Spacing */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff8ef;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(44,31,9,0.09);
  border: 1px solid #f1e1c0;
}

/* Header & Navigation */
header {
  background-color: #f3ede1;
  border-bottom: 4px solid #E9A045;
  position: sticky;
  top: 0;
  z-index: 1200;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 16px;
}
.logo img {
  height: 56px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 1rem;
}
.main-nav a {
  padding: 10px 16px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-shadow: 0 1px 0 #fff3e5;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F1C273;
  color: #234957;
}
.main-nav .cta {
  background: #F1C273;
  color: #234957;
  border-radius: 16px;
  padding: 10px 18px;
  box-shadow: 0 2px 10px rgba(241,194,115,0.16);
  border: 2px solid #E9A045;
  font-size: 1.13rem;
  transition: background 0.2s, box-shadow 0.18s;
}
.main-nav .cta:hover, .main-nav .cta:focus {
  background: #234957;
  color: #fff8ef;
  box-shadow: 0 2px 16px rgba(35,73,87,0.18);
}

/* Mobile Menu Button */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: #234957;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.15s;
  z-index: 1350;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #F1C273;
}

/* Mobile Navigation Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #fafaf8;
  box-shadow: 0 0 24px 0 rgba(35,73,87,0.16);
  z-index: 1600;
  transform: translateX(-110%);
  transition: transform 0.35s cubic-bezier(.77,.13,.69,.98);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px; right: 22px;
  background: #F1C273;
  color: #234957;
  border: none;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2000;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #234957;
  color: #fff8ef;
}
.mobile-nav {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 0 34px;
}
.mobile-nav a {
  font-size: 1.23rem;
  background: none;
  padding: 10px 0;
  border-bottom: 1px dashed #f0ddb6;
  width: 100%;
  color: #234957;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  color: #a64d38;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
    font-size: 1.02rem;
  }
  .logo img {
    height: 45px;
  }
}
@media (max-width: 900px) {
  header .container {
    height: 66px;
  }
  .main-nav a, .main-nav .cta {
    padding: 8px 10px;
    font-size: 0.97rem;
  }
}
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Hero Sections */
.hero {
  background: repeating-linear-gradient(135deg, #F1C273, #F1C273 16px, #ffeecf 16px, #ffeecf 32px);
  color: #234957;
  padding: 48px 0 38px 0;
  margin-bottom: 40px;
  box-shadow: 0 6px 18px rgba(241,194,115,0.08);
  border-radius: 0 0 40px 40px;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 2.6rem;
  color: #a64d38;
  text-shadow: 1px 1px 0 #fff8ef;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.15rem;
  margin-bottom: 17px;
  color: #234957;
  max-width: 680px;
}

/* Section / Card Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff8ef;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(35,73,87,0.08);
  padding: 32px 28px;
  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;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.feature {
  background: #ffefd6;
  border-radius: 14px;
  padding: 24px 18px;
  box-shadow: 0 2px 8px rgba(241,194,115,0.11);
  min-width: 220px;
  max-width: 299px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 1.5px solid #F1C273;
  text-align: left;
  transition: transform 0.18s, box-shadow 0.18s;
}
.feature:hover {
  transform: translateY(-2px) scale(1.03) rotate(-1.1deg);
  box-shadow: 0 7px 24px rgba(35,73,87,0.14);
}
.feature img {
  height: 44px;
  filter: sepia(25%) contrast(1.1) brightness(1.1);
}

.service-listing, .service-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.service, .service-card {
  background: #F8F7F3;
  border-radius: 12px;
  border: 1.5px solid #F1C273;
  box-shadow: 0 1.5px 11px rgba(241,194,115,0.10);
  padding: 22px 18px;
  min-width: 220px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.12s, box-shadow 0.15s;
}
.service-card .price, .service h3 span {
  display: inline-block;
  margin-left: 10px;
  background: #FFECC8;
  color: #B96228;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  padding: 3px 12px;
  border-radius: 16px;
  box-shadow: 0 1px 4px rgba(241,194,115,0.07);
  font-weight: 800;
  letter-spacing: 0.08em;
}
.service-card:hover, .service:hover {
  transform: scale(1.03) rotate(0.6deg);
  box-shadow: 0 4px 20px rgba(241,194,115,0.14);
}

.cta-buttons, .cta-section {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 8px;
  align-items: center;
}

.cta, .cta-link, .event-register {
  font-family: 'Montserrat', sans-serif;
  display: inline-block;
  background: #F1C273;
  color: #234957;
  font-weight: 700;
  border-radius: 16px;
  padding: 10px 26px;
  font-size: 1.12rem;
  border: 2px solid #E9A045;
  box-shadow: 0 2px 10px rgba(241,194,115,0.13);
  transition: background 0.18s, color 0.18s, box-shadow 0.22s, transform 0.13s;
  margin-top: 6px;
  text-align: center;
}
.cta:hover, .cta:focus, .event-register:focus, .event-register:hover {
  background: #234957;
  color: #fff8ef;
  border-color: #234957;
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 6px 24px rgba(35,73,87,0.17);
}
.cta.secondary {
  background: transparent;
  color: #234957;
  border: 2px solid #F1C273;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #F1C273;
  color: #234957;
}
.cta-link {
  background: none;
  color: #a64d38;
  border: none;
  box-shadow: none;
  padding: 6px 2px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: underline dotted;
}
.cta-link:hover, .cta-link:focus {
  color: #234957;
  text-decoration: underline wavy;
}

.categories-menu {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
}
.categories-menu a {
  background: #FFECC8;
  padding: 7px 22px;
  border-radius: 18px;
  color: #a64d38;
  font-weight: 700;
  border: 1.5px solid #F1C273;
  transition: background 0.18s, color 0.15s;
}
.categories-menu a:hover, .categories-menu a:focus {
  background: #F1C273;
  color: #234957;
}

.recent-posts, .blog-post-list {
  list-style: disc inside;
  margin: 0 0 12px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.recent-posts li, .blog-post-list li {
  font-size: 1.05rem;
}
.recent-posts a, .blog-post-list a {
  color: #B96228;
  text-decoration: underline #F1C273 2px;
  transition: color 0.15s;
}
.recent-posts a:hover, .blog-post-list a:hover {
  color: #234957;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
  margin-top: 12px;
}
.category {
  flex: 1 1 180px;
  min-width: 140px;
  max-width: 210px;
  background: #FFF8EF;
  border-radius: 16px;
  padding: 24px 12px 15px 12px;
  text-align: center;
  border: 1.5px solid #FFECC8;
  box-shadow: 0 1.5px 8px rgba(241,194,115,0.06);
  cursor: pointer;
  transition: background 0.14s, box-shadow 0.17s, transform 0.12s;
}
.category img {
  height: 38px;
}
.category:hover {
  background: #F1C273;
  box-shadow: 0 6px 22px rgba(35,73,87,0.15);
  transform: scale(1.04) rotate(-0.7deg);
}
.category h3 {
  color: #a64d38;
}

.event-list {
  margin-bottom: 20px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.event-list li {
  background: #fff8ef;
  border-left: 7px solid #F1C273;
  border-radius: 8px;
  padding: 16px 22px 10px 18px;
  line-height: 1.7;
  box-shadow: 0 1.5px 8px rgba(241,194,115,0.07);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.event-list .event-register {
  display: inline-block;
  font-size: 1rem;
  background: #F1C273;
  color: #234957;
  padding: 6px 16px;
  border-radius: 8px;
  margin-left: 4px;
  border: 1.5px solid #f1c273;
  box-shadow: 0 1px 4px rgba(241,194,115,0.09);
}
.event-list .event-register:focus, .event-list .event-register:hover {
  background: #234957;
  color: #fff8ef;
}
.event-list small {
  color: #936836;
}

.event-highlights {
  background: #FFFBF4;
  border-radius: 11px;
  margin-top: 10px;
  padding: 16px 24px 10px 24px;
  border: 1.5px solid #F1C273;
  font-size: 1.03rem;
  color: #333;
}
.event-highlights h3 {
  margin-bottom: 6px;
  color: #a64d38;
  font-size: 1.15rem;
}
.event-highlights li {
  list-style: disc inside;
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 26px 20px 32px;
  border-radius: 18px;
  background: #f7eee1;
  box-shadow: 0 2px 16px rgba(35,73,87,0.08);
  border: 1.5px solid #F1C273;
  flex: 1 1 300px;
  min-width: 220px;
  color: #234957;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.13s, box-shadow 0.13s, border-color 0.14s;
  font-size: 1.08rem;
}
.testimonial-card blockquote {
  font-style: italic;
  font-size: 1.04rem;
  color: #935929;
  margin-bottom: 0;
}
.testimonial-card cite {
  color: #234957;
  font-style: normal;
  margin-top: 4px;
  font-size: 0.99rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.testimonial-card:hover {
  border-color: #a64d38;
  box-shadow: 0 8px 20px rgba(241,194,115,0.17);
  transform: scale(1.025) rotate(-0.6deg);
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff8ef;
  border-top: 2.5px solid #F1C273;
  box-shadow: 0 -4px 24px rgba(35,73,87,0.09);
  padding: 28px 5vw 22px 5vw;
  font-family: 'Open Sans',Arial,sans-serif;
  font-size: 1.07rem;
  color: #234957;
  gap: 18px;
  transition: opacity 0.24s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: #F1C273;
  color: #234957;
  font-family: 'Montserrat',sans-serif;
  border: 1.5px solid #E9A045;
  border-radius: 16px;
  padding: 8px 21px;
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.14s, box-shadow 0.15s;
}
.cookie-banner button:focus, .cookie-banner button:hover {
  background: #234957;
  color: #fff8ef;
}
.cookie-banner .cookie-settings {
  background: #fff8ef;
  border: 1.5px solid #234957;
  color: #234957;
}
.cookie-banner .cookie-settings:focus, .cookie-banner .cookie-settings:hover {
  background: #F1C273;
  color: #234957;
  border-color: #F1C273;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  z-index: 4000;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(35,73,87,0.33);
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.22s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff8ef;
  border-radius: 20px;
  padding: 36px 34px 26px 34px;
  box-shadow: 0 6px 40px rgba(35,73,87,0.14);
  max-width: 96vw;
  min-width: 320px;
  max-width: 420px;
  font-size: 1.09rem;
  color: #234957;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal-content h2 {
  font-size: 1.45rem;
  margin-bottom: 14px;
  color: #a64d38;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category label {
  font-size: 1.04rem;
  font-weight: 600;
}
.cookie-category input[type=checkbox] {
  accent-color: #F1C273;
  width: 20px; height: 20px;
}
.cookie-category.essential {
  opacity: 0.75;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #F1C273;
  color: #234957;
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  cursor: pointer;
  transition: background 0.11s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: #234957;
  color: #fff8ef;
}

/* Forms and Inputs */
input[type='search'] {
  display: block;
  margin: 13px 0 4px 0;
  padding: 0.7em 1.2em;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.08rem;
  border-radius: 13px;
  border: 1.4px solid #F1C273;
  background: #fff8ef;
  color: #234957;
  width: 100%;
  max-width: 330px;
}
input[type='search']:disabled {
  opacity: 0.60;
  background: #f6f6f6;
}
label {
  margin-top: 8px;
  display: block;
  font-family: 'Montserrat',sans-serif;
  font-weight: 500;
  font-size: 1.02rem;
  color: #a64d38;
}

/* Address and Footer */
footer {
  background: #234957;
  color: #FFECC8;
  font-size: 0.99rem;
  padding: 42px 0 0 0;
  border-top: 7px solid #F1C273;
  margin-top: 54px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 3px;
}
.footer-nav a {
  color: #F1C273;
  font-weight: 700;
  font-family: 'Montserrat',sans-serif;
  letter-spacing: 0.03em;
  transition: color 0.14s, text-decoration 0.2s;
  text-underline-offset: 4px;
  text-decoration: underline #395e6f 2px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff8ef;
  text-decoration: underline #f1c273 3px;
}
footer address {
  font-style: normal;
  margin-bottom: 0;
  line-height: 1.6;
  color: #FFF9E0;
}
footer p {
  font-size: 0.97rem;
  opacity: 0.89;
  margin-top: 6px;
}

/* Contact & Info Box */
.contact-info {
  background: #fff8ef;
  border-radius: 10px;
  border: 1.4px solid #F1C273;
  padding: 15px 20px;
  margin-bottom: 15px;
  color: #234957;
  font-size: 1.03rem;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffefd6;
  border-radius: 11px;
  border: 1px solid #ffecc8;
  padding: 12px 18px;
  margin-bottom: 10px;
  font-size: 1.01rem;
  color: #92671f;
}
.map-placeholder img {
  height: 36px;
}

/* Utility: Hide Accessories on Mobile */
@media (max-width: 950px) {
  .feature-grid, .service-card-grid, .testimonials {
    gap: 16px;
  }
  .cta-buttons {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
    max-width: 98vw;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .content-wrapper {
    gap: 13px;
  }
  .section {
    margin-bottom: 29px;
    padding: 26px 4vw;
    border-radius: 10px;
  }
  .feature-grid, .service-listing, .service-card-grid, .testimonials {
    flex-direction: column;
    gap: 13px;
  }
  .category-grid {
    flex-direction: column;
    gap: 12px;
  }
  .testimonials {
    margin-top: 13px;
  }
  .cta-section, .cta-buttons {
    flex-direction: column;
    gap: 6px;
  }
  .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .footer-nav {
    gap: 13px;
  }
}
@media (max-width: 500px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 10px 20px 10px;
    font-size: 0.96rem;
    gap: 9px;
  }
  .cookie-modal-content {
    padding: 23px 8px 20px 8px;
    min-width: 94vw;
    max-width: 98vw;
  }
  .mobile-nav {
    padding: 0 12px;
    gap: 16px;
  }
  .mobile-menu-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }
  .logo img {
    height: 36px;
  }
}

/* Vintage Retro Patterns */
body {
  /* Subtle background pattern for retro flavor */
  background: repeating-linear-gradient(135deg, #f8f6f1, #f8f6f1 42px, #ffeecf 42px, #ffeecf 84px);
}
.hero {
  background: repeating-linear-gradient(105deg, #F1C273, #F1C273 38px, #fff8ef 38px, #fff8ef 76px);
}
footer {
  background: repeating-linear-gradient(127deg, #234957 0 13px, #16323c 13px 26px);
}
.section {
  background: repeating-linear-gradient(101deg, #fff8ef, #fff8ef 34px, #FFECC8 34px, #FFECC8 68px);
}
.feature, .service, .service-card, .category {
  background: repeating-linear-gradient(129deg, #ffefd6, #ffefd6 18px, #fff8ef 18px, #fff8ef 36px);
}
.testimonial-card {
  background: repeating-linear-gradient(142deg, #f7eee1, #f7eee1 31px, #ffeecf 31px, #ffeecf 62px);
}

/* Retro fonts fallback */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local('Montserrat'), local('Montserrat-Regular'), url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), local('OpenSans-Regular'), url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
}

/* Subtle Microinteractions */
button, .cta, .category, .feature, .service-card, .service, .testimonial-card {
  transition: box-shadow 0.16s, background 0.15s, color 0.14s, border 0.14s, transform 0.13s;
}

/* Accessibility enhancements */
:focus-visible {
  outline: 2px solid #F1C273;
  outline-offset: 1px;
}

/* Hide visually-only */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Decorative elements - only using absolute for non-content */
/* EXAMPLE: Decorative tape on testimonial cards */
.testimonial-card::before {
  content: '';
  display: block;
  position: absolute;
  left: 40px; top: -11px;
  width: 90px; height: 19px;
  background: #F1C273;
  border-radius: 7px;
  z-index: 1;
  opacity: 0.18;
}

/* Style required for .feature-item */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/******* End of style.css vintage-retro + brand for Mozaika Smaków *******/
