/* RESET & BASELINE --------------------------------------------------- */
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;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #E9D7C3;
  color: #283E4A;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  letter-spacing: 0.05em;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #85682f;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A88D6A;
}
ul, ol {
  margin-bottom: 1.6em;
  padding-left: 1.2em;
}
ul li, ol li {
  margin-bottom: 0.4em;
}
strong, b {
  font-weight: 700;
}

/* BRAND TYPOGRAPHY ---------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Lato:wght@300;400;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #283E4A;
  font-weight: 900;
  margin: 0 0 18px 0;
  letter-spacing: 0.03em;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.2rem;
}
h5 {
  font-size: 1rem;
}
h6 {
  font-size: 0.95rem;
}
.subheadline {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.12rem;
  color: #85682f;
  font-style: italic;
  margin-bottom: 2em;
}

blockquote {
  font-family: 'Playfair Display', serif;
  background: #fff5e8;
  color: #60471a;
  border-left: 6px solid #A88D6A;
  border-radius: 8px 32px 32px 8px;
  margin: 0 0 1.5em 0;
  padding: 20px 30px 18px 24px;
  font-size: 1.1em;
  line-height: 1.4;
}

/* VINTAGE RETRO COLORS ------------------------------------------------ */
:root {
  --primary: #283E4A;
  --secondary: #E9D7C3;
  --accent: #85682f;
  --white: #fff;
  --brown: #A88D6A;
  --beige: #E9D7C3;
  --rose: #ebafa0;
  --retro-red: #bc7061;
}

/* LAYOUT UTILITIES ---------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* Spacing patterns (as required) */
.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;
}

/* NAVIGATION & HEADER ------------------------------------------------- */
header {
  background: #fff6e9 url('data:image/svg+xml,%3Csvg width="80" height="40" viewBox="0 0 80 40" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cellipse cx="40" cy="20" rx="39" ry="19" fill="%23f9ecdb"/%3E%3C/svg%3E') repeat-x center top;
  border-bottom: 4px solid #A88D6A;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  min-height: 88px;
  gap: 24px;
  position: relative;
}
.main-nav {
  display: flex;
  gap: 17px;
  margin-left: 28px;
}
.main-nav a {
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #283E4A;
  background: none;
  border-radius: 14px;
  padding: 7px 17px;
  text-decoration: none;
  position: relative;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #A88D6A;
  color: #fff;
}
.button.button-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  outline: none;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.18rem;
  border-radius: 22px 8px 21px 8px;
  padding: 12px 32px 10px 32px;
  margin-left: auto;
  margin-right: 12px;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 14px 0 rgba(40, 62, 74, 0.10);
  cursor: pointer;
  text-shadow: 0 1px 0 #85682f40;
  transition: background 0.18s, box-shadow 0.24s, transform 0.09s;
  text-decoration: none;
}
.button.button-primary:hover, .button.button-primary:focus {
  background: #bc7061;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 26px 0 rgba(136,104,47,0.18);
}

.logo {
  height: 64px;
  margin-right: 20px;
}

/* Mobile burger/menu -------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  margin-left: 22px;
  z-index: 103;
  height: 46px;
  width: 46px;
  transition: background 0.21s;
  border-radius: 50%;
}
.mobile-menu-toggle:focus,.mobile-menu-toggle:hover {
  background: #e5c89a;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(233, 215, 195, .98);
  z-index: 102;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.37s cubic-bezier(.77,0,.18,1), opacity 0.19s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.2rem;
  margin: 28px 32px 6px 0;
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-self: flex-end;
  transition: background 0.18s;
}
.mobile-menu-close:focus,.mobile-menu-close:hover {
  background: #e5c89a;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: flex-start;
  background: transparent;
  margin-top: 42px;
  padding: 0 40px;
}
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  color: #283E4A;
  background: #efe0d0;
  border-radius: 18px 6px 16px 6px;
  padding: 14px 22px;
  font-size: 1.12rem;
  font-weight: 700;
  text-decoration: none;
  width: 100%;
  transition: background 0.16s, color 0.2s;
  letter-spacing: 0.025em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: #fff;
}

/* HERO SECTION -------------------------------------------------------- */
.hero-section {
  background: linear-gradient(180deg, #fff6e9 60%, #E9D7C3 100%);
  border-bottom: 4px solid #85682f;
  padding: 48px 0 36px 0;
  margin-bottom: 0;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 690px;
  margin-top: 24px;
}
.hero-section h1 {
  font-size: 2.6rem;
  color: #283E4A;
  line-height: 1.20;
  margin-bottom: 12px;
}
.hero-section .subheadline {
  font-size: 1.13rem;
  margin-bottom: 24px;
}

/* FEATURES, CARDS, TEAM, BENEFTIS, PACKAGES --------------------------- */
.features-grid, .team-grid, .packages-grid, .benefits-grid, .testimonial-list, .testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  margin-top: 18px;
  justify-content: flex-start;
}
.feature-item, .benefit-item, .team-member, .package-card {
  background: #fff;
  color: #283E4A;
  border-radius: 24px 24px 12px 12px;
  box-shadow: 0 4px 42px 0 rgba(136,104,47,0.07);
  border: 1.5px solid #A88D6A;
  padding: 28px 28px 22px 28px;
  min-width: 255px;
  flex: 1 1 260px;
  min-height: 216px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.29s, transform 0.14s;
}
.feature-item:hover, .package-card:hover, .benefit-item:hover, .team-member:hover {
  box-shadow: 0 4px 48px 0 rgba(171,105,70,0.16);
  transform: translateY(-5px) scale(1.025);
  z-index: 2;
}
.feature-item img, .benefit-item img, .team-member img, .package-card img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
}
.feature-item h3, .benefit-item h3, .team-member h3, .package-card h3 {
  color: #bc7061;
  font-family: 'Playfair Display', serif;
  font-size: 1.14rem;
  margin-bottom: 7px;
}

/* TABLES (for services) ------------------------------------------------*/
table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 32px;
  margin-bottom: 28px;
  font-size: 1rem;
  background: #fff;
  border-radius: 24px 16px 16px 24px;
  box-shadow: 0 3px 20px 0 rgba(136,104,47,0.09);
  overflow: hidden;
}
th, td {
  text-align: center;
  padding: 17px 16px;
  border-bottom: 1.5px solid #E9D7C3;
}
th {
  font-family: 'Playfair Display', serif;
  background: #f5e8da;
  color: #85682f;
  font-size: 1.08rem;
  font-weight: 900;
}
tr:last-child td { border-bottom: none; }

/* TESTIMONIALS -------------------------------------------------------- */
.testimonial-card {
  background: #fff5e8;
  border-radius: 24px;
  border: 1.5px solid #bc7061;
  box-shadow: 0 2px 30px 0 rgba(181,121,69,0.10);
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  min-width: 260px;
  max-width: 400px;
  transition: box-shadow 0.23s, transform 0.11s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 44px 0 rgba(181,121,69,0.17);
  transform: scale(1.02);
}
.testimonial-card p, .testimonial-card blockquote {
  font-family: 'Playfair Display', serif;
  color: #60471a;
  font-size: 1.06rem;
  margin: 0 0 6px 0;
  line-height: 1.38;
}
.stars {
  display: flex;
  gap: 2px;
}
.testimonial-name {
  font-family: 'Lato', Arial, sans-serif;
  color: #85682f;
  font-size: 0.93rem;
  font-style: italic;
  margin-top: 6px;
  letter-spacing: 0.01em;
  margin-bottom: 1px;
}

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 6px;
}

/* CTA SECTION --------------------------------------------------------- */
.cta-section {
  background: #bc7061;
  color: #fff;
  border-radius: 0 0 32px 32px;
  text-align: center;
  margin-bottom: 0;
  padding: 60px 0 40px 0;
  box-shadow: 0 1px 28px 0 rgba(136,104,47,0.12);
}
.cta-section h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 14px;
  text-shadow: 0 1px 0 #A88D6A60;
}
.cta-section p {
  font-size: 1.11rem;
  color: #fff;
  margin-bottom: 22px;
}
.cta-section .button.button-primary {
  background: #85682f;
}
.cta-section .button.button-primary:hover {
  background: #283E4A;
}

/* FAQ LIST ------------------------------------------------------------ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 22px 0 30px 0;
}
.faq-list li {
  background: #fffaf4;
  border-radius: 14px 38px 32px 12px;
  border: 1.2px dashed #A88D6A;
  padding: 22px 26px;
  box-shadow: 0 3px 22px 0 rgba(136,104,47,0.04);
}
.faq-list strong {
  color: #bc7061;
  font-family: 'Playfair Display', serif;
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.faq-list p {
  font-size: 1rem;
}

/* FOOTER -------------------------------------------------------------- */
footer {
  background: #283E4A;
  color: #fff;
  margin-top: 50px;
  padding: 38px 0 6px 0;
  border-radius: 32px 32px 0 0;
  border-top: 4px solid #A88D6A;
  font-size: 0.97rem;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px 32px;
  justify-content: space-between;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-width: 180px;
}
.footer-nav a {
  color: #fff6e9;
  text-decoration: none;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.13s, text-decoration 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #bc7061;
  text-decoration: underline;
}
.footer-contact img {
  vertical-align: middle;
  height: 20px;
  width: 20px;
  margin-right: 8px;
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer-social a {
  display: inline-block;
  background: #fff6e9;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s;
}
.footer-social a:hover, .footer-social a:focus {
  background: #A88D6A;
}
.footer-copyright {
  margin-top: 14px;
  width: 100%;
  font-size: 0.92rem;
  color: #a79b84;
  text-align: left;
}

/* CARD GRID GENERIC --------------------------------------------------- */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 22px 18px 22px;
}

/* BUTTONS & INTERACTION ----------------------------------------------- */
.button {
  display: inline-block;
  border-radius: 22px 8px 21px 8px;
  background: var(--accent);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  padding: 12px 32px 10px 32px;
  font-size: 1.1rem;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(40, 62, 74, 0.06);
  transition: background 0.18s, color 0.16s, transform 0.09s, box-shadow 0.18s;
  text-decoration: none;
}
.button:hover, .button:focus {
  background: #bc7061;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 24px 0 rgba(136,104,47,0.15);
}
.button-secondary {
  background: #fff6e9;
  color: #bc7061;
  border: 1.5px solid #bc7061;
}

/* SECTION PATTERNS ---------------------------------------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section:last-child {
  margin-bottom: 0!important;
}

/* Classic vintage patterns background (applied subtly) -----------------*/
.section, .feature-item, .testimonial-card, .team-member, .faq-list li {
  background-image: repeating-linear-gradient(135deg, #ffeee1 0 3px, transparent 3px 24px);
  background-size: 340px 340px;
  background-repeat: no-repeat;
}

/* COOKIE CONSENT BANNER (bottom fixed) ---------------------------------*/
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff5e8;
  color: #60471a;
  border-top: 3px solid #A88D6A;
  box-shadow: 0 -8px 36px 0 rgba(40, 62, 74, 0.10);
  z-index: 1060;
  padding: 18px 40px 18px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  font-size: 1.05rem;
  transition: transform 0.4s, opacity 0.4s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(160%);
}
@media (max-width: 768px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 14px;
    padding: 18px 14px 22px 14px;
    font-size: 0.98rem;
    align-items: stretch;
  }
}
.cookie-consent-banner .button {
  font-size: 1.01rem;
  padding: 9px 21px;
  margin-top: 0;
  letter-spacing: 0.01em;
  border-radius: 17px 6px 17px 9px;
}
.cookie-consent-banner .button-secondary {
  color: #bc7061;
  background: transparent;
  border: 1.5px solid #bc7061;
  margin-left: 4px;
}
.cookie-consent-banner .button-secondary:hover, .cookie-consent-banner .button-secondary:focus {
  background: #ffe3d3;
}

/* Cookie modal overlay ----------------------------------------------- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: rgba(40,62,74,0.22);
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: fadeInCookie 0.35s;
}
@keyframes fadeInCookie {
  from{opacity:0} to{opacity:1}
}
.cookie-modal {
  background: #fff5e8;
  color: #283E4A;
  border-radius: 24px;
  box-shadow: 0 8px 62px 0 rgba(168,141,106,.19);
  min-width: 300px;
  max-width: 95vw;
  padding: 32px 30px 26px 34px;
  position: relative;
  font-size: 1.07rem;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 2.5px solid #bc7061;
}
.cookie-modal h3 {
  font-size: 1.2rem;
  color: #A88D6A;
  margin-bottom: 8px;
  font-family: 'Playfair Display',serif;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.cookie-modal .cookie-toggle {
  width: 38px;
  height: 20px;
  border-radius: 10px;
  background: #E9D7C3;
  border: 1.5px solid #A88D6A;
  position: relative;
  margin-right: 7px;
  flex-shrink: 0;
  cursor: pointer;
}
.cookie-modal .cookie-toggle[data-checked="true"] {
  background: #A88D6A;
  border: 1.5px solid #A88D6A;
}
.cookie-modal .cookie-toggle::before {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.21s;
}
.cookie-modal .cookie-toggle[data-checked="true"]::before {
  left: 19px;
  background: #ffe3d3;
}
.cookie-modal .cookie-toggle[aria-disabled="true"] {
  filter: grayscale(1);
  opacity: 0.7;
  pointer-events: none;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 8px;
  align-items: center;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 17px;
  background: none;
  border: none;
  color: #bc7061;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.16s;
  border-radius: 50%;
  height: 35px; width: 35px;
}
.cookie-modal .close-modal:hover { background: #fbeee2; }

/* RESPONSIVE ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .main-nav {
    gap: 11px;
    margin-left: 0;
  }
  .content-wrapper, .hero-section .content-wrapper {
    max-width: 96vw;
    gap: 14px;
  }
}

@media (max-width: 900px) {
  .footer-nav, .footer-contact {
    min-width:unset;
    width:50%;
  }
  .content-wrapper {
    gap: 13px;
  }
  .feature-item,.benefit-item,.team-member,.package-card {
    min-width:170px;
    padding:17px 13px 17px 13px;
  }
}

@media (max-width: 768px) {
  /* HEADER NAV on mobile ------------------------------------------------ */
  .main-nav,
  .button.button-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
  }

  /* FLEX DIRECTION CHANGES */
  .features-grid, .team-grid, .packages-grid, .benefits-grid, .testimonial-list, .testimonials-slider, .card-container, .card-grid, .content-grid {
    flex-direction: column !important;
    gap: 20px;
    align-items: stretch;
  }
  .content-wrapper {
    padding: 0 0 0 0;
    gap: 13px;
  }
  .hero-section {
    padding: 31px 0 19px 0;
  }
  .hero-section .content-wrapper {
    margin-top: 14px;
    gap: 13px;
    max-width:95vw;
  }
  h1,h2,h3 { font-size: 1.4rem; }
  .footer-copyright {
    text-align: center;
  }
  .footer-nav,.footer-contact {
    width: 96vw;
    min-width: unset;
    align-items: flex-start;
  }
}

@media (max-width: 500px) {
  .container { padding:0 4px; }
  .button,
  .button.button-primary {
    font-size: 1rem;
    padding: 10px 14px;
  }
  .content-wrapper {
    padding:0 2px;
  }
  section {
    padding: 20px 4px;
  }
  .faq-list li {
    padding: 14px 6px;
  }
}

/* TEXT/IMAGE SECTION FLEX DIRECTION ON MOBILE */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* MICRO-INTERACTIONS & TRANSITIONS ----------------------------------- */
.button, .main-nav a, .mobile-nav a, .footer-nav a, .footer-social a {
  transition: background 0.18s, color 0.18s, box-shadow 0.17s, transform 0.12s;
}
.feature-item, .benefit-item, .package-card, .team-member, .testimonial-card {
  transition: box-shadow 0.26s, transform 0.12s;
}
.card, .card-content {
  transition: box-shadow 0.20s, transform 0.11s;
}

/* VINTAGE/NOSTALGIC DETAILS: SUBTLE CORNER RADIUS & OUTLINES ----------*/
.feature-item, .benefit-item, .team-member, .package-card, .testimonial-card {
  border-radius: 18px 42px 22px 14px;
}
 ul, ol {
  border-left: 5px dotted #bc7061;
  padding-left: 1.3em;
  background: rgba(255,245,232,0.13);
  border-radius: 12px;
  margin-bottom: 1.3em;
 }
ul li::marker, ol li::marker {
  color: #A88D6A;
}

/* DECORATIVE DETAILS: Small dots pattern to evoke vintage paper --------*/
body {
  background-image: url('data:image/svg+xml,%3Csvg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cellipse cx="2" cy="2" rx="2" ry="2" fill="%23e9d7c3"/%3E%3Cellipse cx="34" cy="20" rx="2" ry="2" fill="%23ebe3d3"/%3E%3Cellipse cx="20" cy="34" rx="1.5" ry="1.5" fill="%23f9ecdb"/%3E%3C/svg%3E');
  background-size: 180px 180px;
  background-repeat: repeat;
}

/* PRINT CLASSES (for admin PDFs etc if needed) ------------------------*/
@media print {
  .main-nav, .footer-nav, .mobile-menu, .mobile-menu-toggle, .cookie-consent-banner, .cookie-modal-overlay {
    display: none !important;
  }
}
