/* RESET & BASE STYLES */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #ffffff;
  color: #29444b;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 10px;
}
a {
  color: #42616B;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F08E32;
}
ul, ol {
  margin-left: 1.25em;
  padding-left: 1em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
  font-size: 1rem;
}
strong {
  font-weight: 700;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #29444b;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
p {
  margin-bottom: 16px;
  font-size: 1.125rem;
}
button, .cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 30px;
  border: none;
  background: #F08E32;
  color: #fff;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 14px 0 rgba(240, 142, 50, 0.1);
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s, transform 0.13s, box-shadow 0.2s;
}
button:focus, .cta-button:focus {
  outline: 2px solid #42616B;
}
button:hover, .cta-button:hover {
  background: #42616B;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(66, 97, 107, 0.13);
}
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 18px 0 rgba(42, 67, 75, 0.07);
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  display: flex;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 2rem;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-size: 1rem;
  text-transform: uppercase;
  color: #42616B;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
}
.main-nav a:hover, .main-nav a.active {
  color: #F08E32;
}
.main-nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #F08E32;
  transition: width 0.2s;
  margin-top: 2px;
}
.main-nav a:hover::after, .main-nav a.active::after {
  width: 100%;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #F08E32;
  cursor: pointer;
  margin-left: 24px;
  z-index: 101;
}

/* MOBILE NAVIGATION */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #29444b;
  color: #fff;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.68,-0.55,.27,1.55);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  margin-right: 38px;
  font-size: 2.25rem;
  background: none;
  color: #F08E32;
  border: none;
  cursor: pointer;
}
.mobile-nav {
  margin-top: 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding-left: 38px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 0;
  transition: color 0.2s, background 0.2s;
  border-radius: 5px;
  display: inline-block;
  text-transform: uppercase;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F08E32;
  background: rgba(240,142,50,0.06);
}

/* HERO SECTIONS */
.hero {
  background: #F4E6AA;
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
  padding-top: 56px;
  padding-bottom: 56px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 660px;
  gap: 24px;
}
.hero h1 {
  color: #29444b;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0;
}
.hero p {
  color: #42616B;
  font-size: 1.25rem;
  font-weight: 500;
}
.hero .cta-button {
  margin-top: 18px;
}

/* feature-grid, service-list: BOLD Modern Flex Layout */
.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  justify-content: flex-start;
  margin-top: 32px;
}
.feature {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(42, 67, 75, 0.09);
  padding: 32px 26px 28px 26px;
  flex: 1 1 250px;
  min-width: 240px;
  max-width: 305px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  border: 3.5px solid #F4E6AA;
  transition: box-shadow 0.22s, transform 0.2s, border 0.21s;
  position: relative;
}
.feature:hover {
  border: 3.5px solid #F08E32;
  box-shadow: 0 10px 32px 0 rgba(240,142,50,0.08);
  transform: translateY(-5px) scale(1.02);
  z-index: 2;
}
.feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}
.feature h3 {
  color: #29444b;
  font-size: 1.16rem;
  font-weight: 800;
  margin-top: 5px;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.feature p, .feature ul, .feature span {
  font-size: 1rem;
  color: #42616B;
}
.feature ul {
  margin-top: 8px;
  margin-bottom: 8px;
}
.special-offer {
  background: #F08E32;
  color: #fff;
  border-radius: 12px;
  display: inline-block;
  padding: 3px 12px;
  font-weight: 700;
  font-size: 0.97rem;
  margin-top: 6px;
}

/***** TESTIMONIAL CARDS *****/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 28px 32px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 24px rgba(42, 67, 75, 0.08);
  border: 2px solid #F4E6AA;
  max-width: 610px;
}
.testimonial-card p {
  color: #29444b;
  font-size: 1.15rem;
  margin-bottom: 5px;
  font-weight: 600;
}
.testimonial-author {
  color: #F08E32;
  font-size: 1rem;
  font-weight: 700;
  margin-left: 2px;
}

/******* CTA SECTION ********/
.cta-section {
  background: #42616B;
  color: #fff;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.cta-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.cta-section h2 {
  color: #fff;
  font-weight: 800;
  font-size: 2rem;
}
.cta-section .cta-button {
  background: #F08E32;
  color: #fff;
  margin-top: 10px;
}
.cta-section .cta-button:hover {
  background: #fff;
  color: #F08E32;
}

/**** ABOUT PAGE VALUES & LISTS ****/
ul {
  margin-bottom: 18px;
}
.content-wrapper ul li {
  font-size: 1.08rem;
  color: #29444b;
  font-weight: 600;
  margin-bottom: 8px;
}
.content-wrapper ul li strong {
  color: #F08E32;
  font-weight: 700;
}

/**** CONTACT INFO ****/
.contact-info {
  background: #F4E6AA;
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 16px;
  font-size: 1rem;
}
.contact-message {
  color: #29444b;
  font-size: 1.03rem;
}
.contact-info a {
  color: #F08E32;
  text-decoration: underline;
}
.contact-info a:hover {
  color: #42616B;
}

/**** FOOTER ****/
footer {
  background: #29444b;
  color: #fff;
  padding: 40px 0 16px 0;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.footer-logo {
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #F4E6AA;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1rem;
  transition: color 0.2s;
  margin-bottom: 8px;
}
.footer-nav a:hover {
  color: #F08E32;
}
.footer-contact {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.5em;
}
.footer-contact span {
  display: block;
  margin-bottom: 3px;
}
.footer-copy {
  color: #F4E6AA;
  font-size: 1rem;
  font-weight: 700;
}

/**** MANDATORY SPACING and FLEX PATTERNS ****/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(42, 67, 75, 0.09);
  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;
}

/**** CATEGORY NAV IN SHOP ****/
.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 22px 0 0 0;
}
.category-nav a {
  padding: 8px 22px;
  background: #F08E32;
  color: #fff;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  transition: background 0.18s, color 0.16s, box-shadow 0.18s;
  box-shadow: 0 3px 10px 0 rgba(240,142,50,0.09);
}
.category-nav a:hover {
  background: #42616B;
}

/***** MICRO-INTERACTIONS + TRANSITIONS *****/
.card, .feature, .testimonial-card, .cta-section {
  transition: box-shadow 0.22s, transform 0.13s, border 0.21s, background 0.19s;
}

/**** RESPONSIVE DESIGN ****/
@media (max-width: 1280px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .feature-grid, .service-list {
    gap: 24px;
  }
}
@media (max-width: 992px) {
  .feature-grid, .service-list {
    justify-content: center;
    gap: 20px;
  }
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .hero {
    padding-top: 32px;
    padding-bottom: 32px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .feature-grid, .service-list {
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
    gap: 18px;
  }
  .feature, .testimonial-card {
    min-width: 0;
    max-width: 100%;
    padding: 24px 14px 22px 14px;
    border-radius: 15px;
  }
  .cta-section .content-wrapper {
    text-align: center;
    align-items: center;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    padding: 0;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .section {
    padding: 24px 8px;
  }
  header .container {
    flex-direction: row;
    gap: 3px;
  }
  .footer-logo {
    margin-bottom: 4px;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 1.85rem;
  }
  h2 {
    font-size: 1.31rem;
  }
  .cta-section {
    padding: 24px 7px;
    border-radius: 15px;
  }
  .feature, .testimonial-card {
    padding: 15px 8px 15px 8px;
    border-radius: 10px;
  }
  .content-wrapper ul li, p, .contact-message, .contact-info {
    font-size: 0.97rem;
  }
  .footer-nav {
    gap: 7px;
  }
}

/****** COOKIE BANNER *******/
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #29444b;
  color: #fff;
  box-shadow: 0 -3px 20px rgba(42, 67, 75, 0.13);
  padding: 32px 18px 24px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 250;
  flex-wrap: wrap;
  transition: transform 0.35s cubic-bezier(.83,-0.09,.15,.92), opacity 0.2s;
}
.cookie-consent-banner.hide {
  transform: translateY(120px);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner__text {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.06rem;
  margin-right: 20px;
  color: #fff;
}
.cookie-consent-banner__actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 22px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  outline: none;
  margin-left: 3px;
  transition: background 0.19s, color 0.18s;
  box-shadow: 0 2px 7px 0 rgba(240,142,50,0.09);
}
.cookie-btn.accept {
  background: #F08E32;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #29444b;
  border: 2px solid #F08E32;
}
.cookie-btn.settings {
  background: #42616B;
  color: #fff;
}
.cookie-btn.accept:hover {
  background: #42616B;
}
.cookie-btn.reject:hover {
  background: #F08E32;
  color: #fff;
}
.cookie-btn.settings:hover {
  background: #F08E32;
}

@media (max-width: 650px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 7px 20px 7px;
  }
  .cookie-consent-banner__text {
    margin-bottom: 14px;
    margin-right: 0;
    font-size: 0.98rem;
  }
  .cookie-consent-banner__actions {
    flex-direction: row;
    gap: 10px;
  }
}

/***** COOKIE PREFERENCES MODAL *****/
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(42, 67, 75, 0.57);
  z-index: 300;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.20s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #29444b;
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(66,97,107,0.24);
  padding: 48px 40px 32px 40px;
  max-width: 350px;
  width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h3 {
  font-size: 1.41rem;
  margin-bottom: 6px;
  font-weight: 800;
  color: #29444b;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}
.cookie-category input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #F08E32;
  margin-right: 7px;
}
.cookie-category .desc {
  color: #42616B;
  font-size: 1rem;
}
.cookie-modal .essential {
  color: #F08E32;
  font-weight: 700;
}
.cookie-modal__actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 17px;
  background: none;
  color: #F08E32;
  border: none;
  font-size: 1.67rem;
  cursor: pointer;
  padding: 3px 6px;
  border-radius: 50%;
  transition: background 0.16s;
}
.cookie-modal-close:hover {
  background: #F4E6AA;
}

@media (max-width: 475px) {
  .cookie-modal {
    padding: 24px 6px 18px 6px;
    border-radius: 12px;
  }
  .cookie-modal__actions {
    flex-direction: column;
    gap: 8px;
  }
}

/**** UTILITIES ****/
.text-center { text-align: center; }
.text-right { text-align: right; }
.bold { font-weight: bold; }
.upper { text-transform: uppercase; }

/**** SHADOWS + MODERN BOLD ACCENTS ****/
.feature, .card, .testimonial-card, .cta-section, .cookie-modal {
  box-shadow: 0 4px 24px rgba(42, 67, 75, 0.09);
}

/**** GEOMETRIC DECORATIVE SHAPES (Optional) ****/
/* Example: Add .shape-accent to add a bold geometric background/off-angle shape */
.shape-accent {
  position: absolute;
  z-index: 0;
  width: 130px;
  height: 60px;
  background: #F4E6AA;
  border-radius: 48px 44px 36px 36px;
  top: -25px;
  right: -35px;
  opacity: 0.25;
  transform: rotate(-14deg);
}

/**** PRINT STYLES (MINIMALIST) ****/
@media print {
  header, footer, .cookie-consent-banner, .mobile-menu { display: none !important; }
  .hero, .section, .cta-section, .feature-grid, .service-list {
    background: none !important;
    box-shadow: none !important;
    color: #000 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  body {
    color: #000 !important;
    background: #fff !important;
  }
}

/* END OF CSS */
