/* === CSS RESET & NORMALIZE === */
html { box-sizing: border-box; font-size: 16px; }
*, *:before, *:after { box-sizing: inherit; margin: 0; padding: 0; outline: none; }
body, html {
  background: #E7E6E1;
  color: #193248;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  min-height: 100vh;
  min-width: 320px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #193248; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #BF8B3E; }
button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: inherit;
}
ul, ol { list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4, .cta-button, .product-tag, .category-tag, .date-badge {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #193248;
}
h1 { font-size: 2rem; font-weight: 700; margin-bottom: 20px; }
h2 { font-size: 1.5rem; font-weight: 600; margin-bottom: 16px; }
h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 12px; }
h4 { font-size: 1rem; font-weight: 600; }
p, li, span, label { font-size: 1rem; color: #193248; }
p { margin-bottom: 1em; }
strong { font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; }

/* === GEOMETRIC STRUCTURED THEME === */
:root {
  --primary: #193248;
  --secondary: #E7E6E1;
  --accent: #BF8B3E;
  --accent-dark: #B37A22;
  --shadow: 0 2px 10px rgba(25, 50, 72, 0.10);
  --radius: 12px;
}

body { background: var(--secondary); }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  section {
    padding: 30px 8px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 6px;
  }
}

.content-wrapper { max-width: 900px; margin: 0 auto; }

/* === HEADER & NAVIGATION === */
header {
  background: var(--primary);
  color: var(--secondary);
  width: 100%;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(25,50,72,0.08);
  z-index: 100;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px 14px 12px;
}
header nav > a img {
  height: 38px;
  width: auto;
}
header nav ul {
  display: flex;
  gap: 20px;
  margin: 0 16px;
}
header nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--secondary);
  padding: 4px 12px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
header nav ul li a:hover {
  background: var(--accent);
  color: #fff;
}
.cta-button {
  background: var(--accent);
  color: #fff;
  padding: 10px 32px;
  margin-left: 24px;
  border-radius: 32px 4px 32px 4px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow);
  border: 0;
  display: inline-block;
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
  font-size: 1.05rem;
}
.cta-button:hover, .cta-button:focus {
  background: var(--accent-dark);
  box-shadow: 0 4px 16px rgba(25,50,72,0.13);
  transform: translateY(-3px) scale(1.03);
}

@media (max-width: 1024px) {
  header nav ul { gap: 8px; }
  .cta-button { padding: 8px 18px; margin-left: 10px; font-size: 1rem; }
  header nav { padding: 10px 10px 10px 6px; }
}
@media (max-width: 768px) {
  header nav ul, .cta-button { display: none; }
}

/* === MOBILE BURGER NAVIGATION === */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: #fff;
  font-size: 2rem;
  padding: 7px 17px;
  border-radius: 16% 26% 36% 7%;
  border: 0;
  margin-left: auto;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
  z-index: 201;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--primary);
  color: #BF8B3E;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 18px;
    top: 12px;
  }
}

.mobile-menu {
  position: fixed;
  left: 0; top: 0; bottom: 0; right: 0;
  background: rgba(25,50,72,0.97);
  color: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.15rem;
  background: none;
  color: #fff;
  padding: 0 18px 0 6px;
  margin: 20px 0 18px 10px;
  cursor: pointer;
  border: none;
  align-self: flex-start;
  transition: color 0.18s;
  z-index: 1000;
}
.mobile-menu-close:hover {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 28px;
  padding: 32px 34px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 10px 0;
  letter-spacing: 0.03em;
  border-bottom: 2.5px solid transparent;
  transition: border 0.15s, color 0.15s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover {
  color: #BF8B3E;
  border-bottom: 2.5px solid var(--accent);
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}
@media (max-width: 480px) {
  .mobile-nav {
    padding-left: 8vw; padding-right: 6vw;
  }
}

/* === HERO SECTIONS === */
.content-wrapper h1, .content-wrapper > h1 {
  font-size: 2.5rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  color: var(--primary);
}
.content-wrapper .subheadline {
  color: #3d5367;
  font-size: 1.21rem;
  margin-bottom: 18px;
}

/* === MANDATORY SPACING CLASSES === */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; border-radius: var(--radius); box-shadow: var(--shadow); background: #fff; }
.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; border-radius: var(--radius); background: #f6f6f3; box-shadow: var(--shadow); margin-bottom: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* === ABOUT PAGE text-section (A Propos) === */
.text-section ul { margin-bottom: 16px; list-style: disc inside; }
.text-section ul li { margin-bottom: 8px; }

/* === FEATURE GRID / ATOUTS === */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 14px;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fafafe;
  border: 2.5px solid #dde3e6;
  border-radius: 22px 12px 28px 10px;
  box-shadow: var(--shadow);
  padding: 28px 18px 24px 18px;
  min-width: 220px;
  max-width: 270px;
  flex: 1 1 190px;
}
.feature-grid img {
  height: 44px; width: 44px; margin-bottom: 18px;
  shape-outside: polygon(0 0,100% 0,100% 100%,0 100%);
}
.feature-grid h3 {
  font-size: 1.1rem;
  margin-bottom: 7px;
  color: var(--accent-dark);
}
.feature-grid p {
  font-size: 1rem;
  color: #2a354b;
}

@media (max-width: 900px) {
  .feature-grid { gap: 14px; }
  .feature-grid li { max-width: 47vw; min-width:120px; }
}
@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .feature-grid li { min-width:unset; max-width:100%; }
}

/* === CARD & SERVICE CARDS === */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 24px;
  margin-top: 16px;
}
.service-card {
  background: #f9fafb;
  border: 2px solid #dde3e6;
  border-radius: 18px 10px 22px 12px;
  box-shadow: var(--shadow);
  padding: 24px 20px;
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 320px;
  transition: box-shadow 0.2s, border 0.18s, transform 0.18s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card:hover {
  box-shadow: 0 6px 28px rgba(25,50,72,0.13);
  border-color: var(--accent);
  transform: scale(1.025) translateY(-3px);
}
.service-card h3 { margin-bottom: 7px; color: var(--primary); }
.service-card span { color: var(--accent-dark); font-weight: 700; font-size: 1.1rem; margin-top: 10px; }

@media (max-width: 800px) {
  .service-cards { flex-direction: column; gap: 14px; }
}

/* === PRODUCT TAGS & BADGES === */
.product-tag, .category-tag, .date-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border-radius: 8px 18px 8px 18px;
  padding: 2px 12px; margin-left: 10px;
  font-size: .95rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.025em;
  vertical-align: middle;
}
.category-tag { background: #193248; }
.date-badge { background: #7191b5; }

/* === PRODUCT CARDS GRID === */
.product-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0 8px 0;
}
.product-cards-grid li {
  background: #fff;
  border: 1.5px solid #dde3e6;
  border-radius: 18px 8px 20px 12px;
  box-shadow: var(--shadow);
  padding: 24px 18px 18px 18px;
  min-width: 210px;
  flex: 1 1 220px;
  max-width: 320px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.18s, border 0.18s, transform 0.12s;
  position: relative;
}
.product-cards-grid li:hover {
  border-color: var(--accent-dark);
  box-shadow: 0 8px 32px rgba(25,50,72,0.14);
  transform: scale(1.016) translateY(-2px);
}
.product-cards-grid strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
}
.product-cards-grid p {
  color: #3d5367;
  margin-bottom: 0;
  min-height: 36px;
}

@media (max-width: 800px) {
  .product-cards-grid { gap: 14px; }
  .product-cards-grid li { min-width: 140px; max-width: 98vw; }
}

/* === CONTACT, SOCIAL & NEWSLETTER === */
.contact-methods { margin-top: 12px; }
.contact-methods li { margin-bottom: 10px; }

/* === FOOTER === */
footer {
  background: var(--primary);
  color: #fff;
  padding-top: 36px; padding-bottom: 18px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  box-shadow: 0 -3px 24px rgba(25,50,72,0.10);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  row-gap: 20px;
}
.footer-links {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 36px;
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: color 0.19s;
}
.footer-links nav a:hover { color: var(--accent); }

.contact-info { max-width: 260px; font-size: 0.98rem; color: #c2cad0; margin-right: 12px; }
.contact-info a { color: var(--accent); transition: color 0.18s; font-weight: 500; }
.contact-info a:hover { color: #fff; }
.social-links { display: flex; gap: 18px; align-items: center; }
.social-links a img { width: 26px; height: 26px; }
.newsletter-signup p { color: #eee8dc; font-size: 1rem; margin-bottom: 0; }
.newsletter-signup a { color: var(--accent); font-weight: 600; text-decoration: underline; transition: color 0.16s; }
.newsletter-signup a:hover { color: #fff; }

@media (max-width: 960px) {
  footer .container { flex-direction: column; gap: 18px; }
  .footer-links { flex-direction: column; gap: 8px; }
}
@media (max-width: 600px) {
  footer { border-radius: 0; }
  .footer-links nav a { font-size: 0.95rem; }
}

/* === SEARCH BAR & CATEGORIES (CATALOGUE) === */
.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
}
.search-bar input {
  border-radius: 8px;
  border: 1.2px solid #bcc6cd;
  padding: 9px 15px;
  font-size: 1rem;
  width: 190px;
  background: #fff;
}
.search-bar button {
  background: var(--primary);
  color: #fff;
  border-radius: 7px;
  padding: 7px 12px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.17s;
  border: 0;
}
.search-bar button:hover { background: var(--accent); }
.sort-options {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.99rem;
  color: #41546c;
  margin-top: 4px;
}
.sort-options a {
  color: #41546c;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.15s;
}
.sort-options a:hover { color: var(--accent); }

.category-filters {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 10px 0;
  font-size: 1.03rem;
}
.category-filters a {
  padding: 6px 16px;
  border-radius: 8px 20px 8px 20px;
  background: #f9fafb;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 650;
  border: 1px solid #dde3e6;
  transition: background 0.15s, color 0.18s, border 0.19s;
}
.category-filters a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* === LINKS & SEE MORE === */
.see-more-link {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.06rem;
  letter-spacing: 0.015em;
  display: inline-block;
  margin-top: 18px;
  margin-bottom: 2px;
  text-decoration: underline;
  transition: color 0.15s;
}
.see-more-link:hover { color: var(--primary); }

/* === MAP & LOCAION === */
.location-map {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
  background: #f6f6f3;
  padding: 10px 18px;
  border-radius: 12px 6px 12px 6px;
  box-shadow: var(--shadow);
  font-size: 1rem;
}
.location-map img { width: 28px; height: 28px; }

/* === FAQ Accordion === */
.faq-accordion {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion > div {
  background: #f8fafc;
  border-radius: 14px 10px 14px 8px;
  border: 1.3px solid #dde3e6;
  box-shadow: 0 1px 9px rgba(25,50,72,0.04);
  padding: 18px 16px 10px 16px;
}
.faq-accordion h3 { margin-bottom: 9px; color: var(--accent); cursor: pointer; }
.faq-accordion div > div { color: #2a354b; font-size: 1rem; }

/* === TESTIMONIAL CARDS === */
.testimonial-card {
  max-width: 650px;
  margin-bottom: 20px;
  background: #fff;
  color: var(--primary);
  border: 2.5px solid #dde3e6;
  font-size: 1.05rem;
  box-shadow: 0 4px 32px rgba(25,50,72,0.12);
}
.testimonial-card blockquote {
  font-style: italic;
  color: #193248;
  font-size: 1.06rem;
  letter-spacing: 0.01em;
  font-family: 'Open Sans', Arial, sans-serif;
  margin: 0;
}
.testimonial-card blockquote span {
  font-style: normal; display: block; margin-top: 7px; color: #B37A22;
  font-size: 1.01rem;
  font-family: 'Montserrat',Arial,sans-serif;
}
@media (max-width: 600px) {
  .testimonial-card { max-width: 100%; font-size: 0.95rem; }
}

/* === ORDER / CONFIRMATION SUMMARY === */
.confirmation {
  background: #f8fafc;
  padding: 24px 18px;
  border-radius:  18px 8px 22px 12px;
  box-shadow: var(--shadow);
  margin-top: 20px;
}
.order-details-summary ul {
  margin-bottom: 14px;
}
.order-details-summary ul li {
  margin-bottom: 8px;
}
.next-steps {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.next-steps a.cta-button { width: fit-content; }

/* === COOKIES BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #193248;
  width: 100%;
  z-index: 1300;
  box-shadow: 0 -2px 16px rgba(25,50,72,0.09);
  padding: 18px 16px 16px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1rem;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  animation: banner-slide-in .7s cubic-bezier(.23,1.07,.36,1);
}
@keyframes banner-slide-in {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  background: var(--primary);
  color: #fff;
  border-radius: 22px 7px 18px 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  border: 0;
  padding: 8px 22px;
  transition: background 0.13s, color 0.13s, transform 0.14s;
  cursor: pointer;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: var(--accent);
  border: 1.4px solid var(--accent);
  padding: 7px 18px;
}
.cookie-banner .cookie-settings-btn:hover {
  background: var(--accent);
  color: #fff;
}

/* === COOKIE MODAL === */
.cookie-modal-overlay {
  position: fixed; left: 0; top: 0; right:0; bottom:0;
  background: rgba(25,50,72,0.68);
  z-index: 1500;
  display: flex; align-items: center; justify-content: center;
  animation: modal-fade-in .3s linear;
}
@keyframes modal-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #193248;
  border-radius: 16px;
  box-shadow: 0 12px 46px rgba(25,50,72,0.23);
  max-width: 420px;width: 97vw;
  padding: 34px 26px 28px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modal-slide-in .5s cubic-bezier(.23,1.07,.36,1);
}
@keyframes modal-slide-in {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute; right: 18px; top: 12px;
  font-size: 1.6rem;
  background: none; border: none; color: #193248;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover { color: var(--accent); }
.cookie-modal h2 { font-size: 1.18rem; color: var(--accent); margin-bottom: 9px; }
.cookie-modal ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal .cookie-category-toggle {
  display: flex; align-items: center; gap: 12px;
}
.cookie-modal .toggle-switch {
  width: 38px; height: 22px;
  background: #eae6dd;
  border-radius: 11px;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
  flex-shrink: 0;
}
.cookie-modal .toggle-switch[aria-checked="true"] {
  background: var(--accent);
}
.cookie-modal .toggle-switch::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.23s, background 0.13s;
  box-shadow: 0 1px 4px rgba(100,105,115,0.07);
}
.cookie-modal .toggle-switch[aria-checked="true"]::after {
  left: 18px;
  background: #f8e8d9;
}
.cookie-modal .toggle-switch[aria-disabled="true"] {
  background: #d3dadf;
  opacity: 0.65;
  cursor: default;
}
.cookie-modal .toggle-desc {
  font-size: 0.97rem;
  color: #485672;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal button {
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 18px 7px 18px 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 7px 22px;
  transition: background 0.13s, color 0.13s;
  cursor: pointer;
}
.cookie-modal button:hover { background: var(--accent-dark); color: #fff; }

@media (max-width: 500px) {
  .cookie-modal { padding: 22px 5vw 18px 5vw; }
}

/* === RESPONSIVE FLEX LAYOUTS & GENERAL MEDIA QUERIES === */
@media (max-width: 900px) {
  .content-grid, .card-container, .service-cards {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid { gap: 12px; }
  .footer-links { gap: 14px; }
}
@media (max-width: 768px) {
  .content-wrapper h1, .content-wrapper > h1 { font-size: 1.45rem; }
  .feature-grid, .content-grid, .card-container, .service-cards, .product-cards-grid {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section { flex-direction: column; }
  footer .container { flex-direction: column; gap: 18px; }
}

/* === MICRO-INTERACTIONS & TRANSITIONS === */
.card, .service-card, .feature-grid li, .product-cards-grid li, .testimonial-card,
.cta-button, .see-more-link, .cookie-banner button, .category-filters a, .mobile-menu-toggle {
  transition: box-shadow 0.16s, border 0.17s, background 0.2s, color 0.15s, transform 0.14s;
}

/* === UTILITY CLASSES === */
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mt-20 { margin-top: 20px !important; }

/* === SCROLLBAR STYLES === */
::-webkit-scrollbar { width: 8px; background: #dde3e6; }
::-webkit-scrollbar-thumb { background: #AFB8C3; border-radius: 10px; }

/* === GEOMETRIC DECORATION (OPTIONAL) === */
.card::before, .service-card::before, .feature-grid li::before {
  content: '';
  display: block;
  position: absolute;
  top: -20px; left: -22px;
  width: 46px; height: 46px;
  background:linear-gradient(45deg,rgba(203,182,149,0.11) 20%,transparent 90%);
  border-radius: 16px 66% 52% 33%;
  z-index: 0;
  pointer-events: none;
}
.card::before, .service-card::before { top:-13px; left:-13px; width:36px;height:36px; }
.feature-grid li::before { top: -18px; left: -16px; }

/* === SHADOW FOR ACTIVE/FOCUS === */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* === GENERAL TYPOGRAPHY SCALE === */
@media (min-width:1280px) {
  .content-wrapper h1, .content-wrapper > h1 { font-size: 2.7rem; }
  .content-wrapper h2 { font-size: 2rem; }
}
