/* =============================
   CSS RESET & NORMALIZE
   ============================= */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 100%;
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F7F3E3;
  color: #354259;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #354259;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A05C78;
  text-decoration: underline;
}

:root {
  --color-primary: #354259;
  --color-secondary: #E0B1CB;
  --color-accent: #F7F3E3;
  --color-dark: #232420;
  --color-yellow: #FFC857;
  --color-brown: #A05C78;
  --color-border: #e6d8ca;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* =============================
   TYPOGRAPHY - RETRO FLAVOUR
   ============================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: #232420;
  font-weight: 700;
  letter-spacing: 0.012em;
  margin-bottom: 18px;
  text-shadow: 0 1px 0 rgba(182,151,114,0.08);
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.subtitle {
  font-family: var(--font-body);
  color: #A05C78;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
p, ul, ol {
  margin-bottom: 16px;
  font-size: 1rem;
}
ul, ol {
  padding-left: 24px;
}
strong {
  font-weight: 700;
}

/* =============================
   MAIN STRUCTURE & CONTAINERS
   ============================= */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff8f4; /* retro soft paper bg */
  border-radius: 26px;
  box-shadow: 0 4px 24px 0 rgba(100,80,55,0.07);
}

@media (max-width: 768px){
  .container {
    padding: 0 10px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
}

/* =============================
   HEADER, NAVIGATION & FOOTER
   ============================= */
header {
  width: 100%;
  background: var(--color-accent);
  padding: 0;
  box-shadow: 0 2px 12px 0 rgba(53,66,89,0.05);
  position: relative;
  z-index: 50;
}
.main-navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
}
.main-navigation img {
  width: 60px;
  height: auto;
  margin-right: 18px;
  display: inline-block;
}
.main-navigation a {
  padding: 7px 5px;
  border-radius: 6px;
  color: var(--color-primary);
  transition: background .16s, color .2s;
}
.main-navigation a:hover, .main-navigation a:focus {
  background: #ffc85744;
  color: #A05C78;
}
.button-primary {
  background: var(--color-secondary);
  color: var(--color-dark);
  border-radius: 26px;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 6px 18px;
  box-shadow: 0 2px 6px 0 rgba(160,92,120,0.12);
  border: 2px solid #fff0ee;
  transition: background .18s, color .16s, transform .12s;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
}
.button-primary:hover, .button-primary:focus {
  background: #FFC857;
  color: var(--color-primary);
  transform: translateY(-2px) scale(1.045);
  border-color: #ffc857;
}

footer {
  width: 100%;
  background: #F7F3E3;
  border-top: 2px dashed #e6d8ca;
  margin-top: 48px;
  padding: 32px 0 18px 0;
}
.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: #817070;
  flex-direction: row;
}
.footer-navigation a {
  color: #A05C78;
  text-decoration: underline dotted;
  margin: 0 10px;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  color: #354259;
}
.footer-navigation span {
  color: #bd9ba9;
  font-size: 0.92em;
}

/* =============================
   MOBILE NAVIGATION
   ============================= */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #a05c78;
  cursor: pointer;
  z-index: 102;
  position: absolute;
  right: 22px;
  top: 18px;
  transition: color 0.15s, transform 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #FFC857;
  transform: scale(1.18);
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #E0B1CB;
  box-shadow: 0 2px 16px 0 rgba(53,66,89,0.18);
  z-index: 101;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.77,0,0.175,1);
  display: flex;
  flex-direction: column;
  padding-top: 48px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  position: absolute;
  right: 20px;
  top: 16px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #354259;
  cursor: pointer;
  transition: color .2s;
  z-index: 110;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFC857;
  transform: scale(1.18);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.mobile-nav a {
  background: #fff8f4;
  border-radius: 16px;
  padding: 10px 28px;
  color: #354259;
  transition: background .14s, color .16s;
  font-weight: 700;
  margin: 0 0 0 0;
  box-shadow: 0 4px 8px 0 rgba(53,66,89,0.12);
  min-width: 170px;
  text-align: center;
  border: 2px solid #e6d8ca;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFC857;
  color: #A05C78;
}
@media (max-width: 1040px){
  .main-navigation {
    gap: 15px;
    font-size: 0.94rem;
  }
}
@media (max-width: 920px){
  .main-navigation {
    gap: 7px;
  }
}
@media (max-width: 768px){
  .main-navigation {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header {
    min-height: 56px;
  }
}
@media (min-width: 769px){
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* =============================
   HOMEPAGE + SECTION LAYOUTS
   ============================= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 10px;
}
.feature {
  background: #fff;
  border: 2px solid #e6d8ca;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(53,66,89,0.06);
  flex: 1 1 220px;
  min-width: 196px;
  padding: 24px 18px 18px 18px;
  min-height: 285px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow .19s, border-color .14s;
}
.feature img {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  filter: grayscale(0.20) contrast(1.18) brightness(1.08);
}
.feature:hover, .feature:focus {
  border-color: #E0B1CB;
  box-shadow: 0 6px 32px 0 #E0B1CB66;
  z-index: 2;
}

.service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 16px;
}
.service {
  background: #fff;
  border: 2px dashed #e0b1cb77;
  border-radius: 18px;
  min-width: 230px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  padding: 22px 20px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  box-shadow: 0 1px 8px 0 rgba(53,66,89,0.05);
  position: relative;
}
.price {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.12em;
  color: #a05c78;
  padding: 4px 10px 2px 10px;
  background: #F7F3E3;
  border-radius: 8px;
  margin-top: 4px;
  border: 1px solid #e6d8ca;
  box-shadow: 0 0.5px 2px #d6c0b044;
}

@media (max-width: 980px){
  .feature-grid, .service-highlights {
    flex-direction: column;
    gap: 20px;
  }
  .feature, .service {
    min-width: 0;
    width: 100%;
  }
}

/* -----------------------------
   FLEXBOX SPACING PATTERNS
   ----------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fffdf8;
  border-radius: 13px;
  box-shadow: 0 1.5px 10px 0 rgba(100,80,55,.07);
  border: 1.5px solid #eedac6;
  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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #ffd1bce8;
  border: 2px double #A05C78;
  border-radius: 15px;
  color: #232420;
  box-shadow: 0 2px 12px 0 rgba(53,66,89,0.10);
  margin-bottom: 20px;
  font-size: 1.09rem;
  font-family: var(--font-display);
}
.testimonial-card strong {
  font-size: 1rem;
  margin-left: 12px;
  color: #a05c78;
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 10px;
  align-items: flex-start;
}
.highlighted-values {
  background: #FFC8572e;
  border-radius: 10px;
  padding: 18px 14px;
  font-size: 1.02rem;
  margin-top: 12px;
  border: 1.5px dashed #e0b1cb99;
  color: #232420;
}
.styling-benefits {
  margin: 22px 0 0 0;
  padding: 14px 12px 12px 12px;
  background: #E0B1CB33;
  border-radius: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 14px;
}
.delivery-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 1.045rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #E0B1CB11;
  padding: 18px 12px;
  border-radius: 8px;
  border: 1px solid #E0B1CB44;
  font-size: 1.02rem;
  font-family: var(--font-display);
  box-shadow: 0 0.5px 3px #E0B1CB22;
  margin-bottom: 10px;
}

/* =============================
   BUTTONS, FORMS & INTERACTIONS
   ============================= */
.button-primary, .button {
  cursor: pointer;
  user-select: none;
  outline: none;
  text-align: center;
  text-decoration: none;
  transition: background 0.18s, color 0.16s, box-shadow 0.19s, transform 0.15s;
}
.button-primary:active {
  transform: scale(0.97);
  background: #e0b1cb;
}
.button-secondary {
  background: #fff;
  color: #A05C78;
  border: 2px solid #E0B1CB;
  border-radius: 26px;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 6px 18px;
  margin-left: 12px;
  margin-right: 8px;
  transition: background .18s, color .16s;
}
.button-secondary:hover, .button-secondary:focus {
  background: #E0B1CB;
  color: #fff;
}
.button-cancel {
  background: #FFEFEF;
  color: #a05c78;
  border: 2px solid #ffc857aa;
  border-radius: 24px;
  padding: 7px 22px;
  font-weight: 700;
  margin: 0 10px 0 0;
}
.button-cancel:hover, .button-cancel:focus {
  background: #ffc857;
  color: #fff;
}

input, textarea, select, button {
  font-family: var(--font-body);
  font-size: 1em;
  border-radius: 6px;
  border: 1.2px solid #e6d8ca;
  background: #fffaf6;
  padding: 8px 8px;
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.15s, background .12s;
}
input:focus, textarea:focus, select:focus {
  border-color: #E0B1CB;
  background: #F7F3E3;
}
label {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
}

/* =============================
   RETRO ELEMENTS & STYLE FLAVOUR
   ============================= */
.section {
  box-shadow: 0 5px 44px 0 rgba(222,166,186,0.12), 0 1.5px 16px 0 #e6d8ca33;
  border: 2px solid #e6d8ca;
}
.feature, .service, .testimonial-card {
  font-family: var(--font-display);
}
.feature, .service, .testimonial-card, .card {
  background-image: repeating-linear-gradient(135deg, #f7f3e3 0px, #fff8f4 36px, #f7f3e3 72px);
}
@media (max-width: 600px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.22rem; }
  h3 { font-size: 1rem; }
  .container { padding: 0 3vw; }
  .footer-navigation { gap: 9px; flex-direction: column; }
}

/* =============================
   COOKIE CONSENT BANNER & MODAL
   ============================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #FFE7EF;
  color: #354259;
  border-top: 2.5px solid #E0B1CB;
  box-shadow: 0 -2px 24px 0 #E0B1CB80;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
  z-index: 9999;
  gap: 24px;
  font-size: 1rem;
  font-family: var(--font-body);
  animation: cookie-fadein 0.6s;
}
.cookie-banner button {
  margin-left: 10px;
}
.cookie-banner .button-primary {
  background: #FFC857;
  color: #232420;
  border: 2px solid #fff0ee;
  margin-left: 14px;
}
.cookie-banner .button-primary:hover {
  background: #E0B1CB;
  color: #fff;
}
.cookie-banner .button-secondary {
  background: #fff;
  color: #a05c78;
  border: 2px solid #E0B1CB;
}
.cookie-banner .button-secondary:hover {
  background: #E0B1CB;
  color: #fff;
}
@keyframes cookie-fadein {
  0% {
      opacity: 0;
      transform: translateY(28px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 10001;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(53,66,89, 0.47);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.24s;
}
.cookie-modal {
  background: #fff8f4;
  border-radius: 16px;
  padding: 32px 22px 22px 22px;
  max-width: 450px;
  width: 96vw;
  box-shadow: 0 8px 32px #E0B1CB;
  border: 2.5px solid #E0B1CB;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 1rem;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 22px;
  border: none;
  background: none;
  color: #a05c78;
  font-size: 1.7rem;
  cursor: pointer;
}
.cookie-modal-close:hover { color: #FFC857; }
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  margin-bottom: 8px;
}
.cookie-category label {
  font-weight: 500;
  font-family: var(--font-display);
}
.cookie-category input[type="checkbox"] {
  accent-color: #E0B1CB;
  width: 20px;
  height: 20px;
  margin-right: 0px;
}
.cookie-category input[disabled] {
  filter: grayscale(0.7);
  opacity: 0.6;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 10px;
}
@media (max-width: 590px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.98rem;
    gap: 10px;
    padding: 15px 8px;
  }
  .cookie-modal {
    padding: 20px 7px 15px 7px;
  }
}

/* =============================
   RETRO ACCENTS & PATTERNS
   ============================= */
body {
  background-color: var(--color-accent);
  background-image:
    repeating-linear-gradient(135deg, #FFE7EF 0px, #F7F3E3 60px, #FFE7EF 120px);
}
.section, .feature, .service, .testimonial-card, .card {
  /* Retro border effect */
  border-style: solid;
  border-width: 2.5px;
  border-color: #e6d8ca;
}
/* Decorative corner ribbons */
.card::before, .testimonial-card::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  width: 28px;
  height: 28px;
  background: repeating-linear-gradient(-45deg,#FFC857,#FFC857 9px,#fff8f4 9px,#fff8f4 19px);
  border-radius: 5px 0 20px 0;
  box-shadow: 0 2px 8px #ffc85744;
  z-index: 1;
}
.card::after, .testimonial-card::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: repeating-linear-gradient(45deg,#E0B1CB,#E0B1CB 9px,#fff8f4 9px,#fff8f4 19px);
  border-radius: 0 5px 0 20px;
  box-shadow: 0 2px 8px #E0B1CB44;
  z-index: 1;
}

/* =============================
   VISUAL HIERARCHY & SPACING
   ============================= */
main {
  margin-top: 28px;
}
section:not(:last-child) {
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  section:not(:last-child) {
    margin-bottom: 32px;
  }
}

/* =============================
   FORMS & CONTACT PAGE
   ============================= */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #fffdfb;
  border-radius: 13px;
  box-shadow: 0 1px 7px #ffd1bc22;
  padding: 28px 16px 16px 16px;
  border: 1.5px solid #E0B1CB44;
}

/* =============================
   SPECIAL: THANK YOU PAGE
   ============================= */
.thank-you-section {
  background: #FFC85710;
  border-radius: 15px;
  padding: 36px 16px;
  text-align: center;
}

/* =============================
   PRINT STYLES (MINIMAL)
   ============================= */
@media print {
  header, footer, nav, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
}
