/* --- RESET & BASE --- */
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;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #2C2F47;
  background: #FAF6F0;
  line-height: 1.7;
  min-height: 100vh;
}
*::selection { background: #D984A7; color: #fff; }
a { color: #2C2F47; text-decoration: none; transition: color .2s; }
a:hover, a:focus { color: #D984A7; }
ul, ol { margin-left: 1.2em; }
img { max-width: 100%; display: block; height: auto; }
hr { border: none; border-top: 1px solid #E2DED6; margin: 32px 0; }

/* TYPE SCALE – Playfair for display, Roboto for body */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #2C2F47;
  letter-spacing: -0.5px;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; line-height: 1.2; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; letter-spacing: 0; }
h4 { font-size: 1.1rem; }
p, li, dd { font-size: 1rem; font-family: 'Roboto', Arial, sans-serif; font-weight: 400; color: #444042; margin-bottom: 12px; }
strong { font-weight: 700; }

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(44,47,71, 0.06);
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #FAF6F0;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E2DED6;
  position: relative;
  z-index: 20;
}
header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
}
header nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 500;
  transition: background .18s, color .18s;
}
header nav a.cta-button {
  background: #D984A7;
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  padding: 9px 22px;
  border-radius: 32px;
  font-weight: 700;
  margin-left: 8px;
  box-shadow: 0 2px 12px rgba(44,47,71,0.06);
}
header nav a.cta-button:hover,
header nav a.cta-button:focus {
  background: #2C2F47;
  color: #fff;
}
header nav a.active,
header nav a:active {
  background: #E2DED6;
}
header nav a img {
  height: 38px;
  width: auto;
  margin-right: 10px;
  vertical-align: middle;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 25px;
  font-size: 2rem;
  color: #2C2F47;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 201;
  transition: color .18s;
}
.mobile-menu-toggle:hover,.mobile-menu-toggle:focus {
  color: #D984A7;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #FAF6F0;
  box-shadow: 8px 0 28px rgba(44,47,71, 0.10);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform .36s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: #2C2F47;
  background: none;
  border: none;
  align-self: flex-end;
  margin: 25px 24px 6px 0;
  cursor: pointer;
  transition: color .18s;
}
.mobile-menu-close:hover,.mobile-menu-close:focus {
  color: #D984A7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: 100%;
  align-items: flex-start;
  margin: 24px 0 0 36px;
}
.mobile-nav a {
  display: inline-block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  color: #2C2F47;
  padding: 12px 0;
  background: none;
  border-radius: 8px;
  font-weight: 600;
  width: 80vw;
  transition: background .18s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E2DED6;
  color: #D984A7;
}

@media (max-width: 1024px) {
  header nav {
    flex-wrap: wrap;
    gap: 8px;
  }
}
@media (max-width: 900px) {
  header nav {
    flex-wrap: wrap;
    gap: 6px;
  }
  header nav a {
    font-size: .95rem;
    padding: 6px 7px;
  }
  header nav a.cta-button {
    padding: 8px 18px;
    font-size: 1rem;
  }
  header nav a img { height: 32px; }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* Hide mobile menu by default on desktop */
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* --- MAIN SECTIONS --- */
main section {
  margin-bottom: 60px;
  padding: 40px 0;
}
main section:last-child { margin-bottom: 0; }

/* .section is reused if needed, see above */

/* --- TYPOGRAPHY & ELEMENTS --- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.text-section ul,
.text-section ol {
  margin-bottom: 16px;
  padding-left: 22px;
  line-height: 1.7;
  font-size: 1rem;
  color: #444042;
}
.text-section li {
  margin-bottom: 8px;
  padding-left: 0;
}
.text-section li img {
  height: 1.2em;
  width: auto;
  margin-right: 9px;
  vertical-align: text-bottom;
}
dd { margin-bottom: 18px; }

/* --- CARDS & FLEX CONTAINERS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  flex: 1 1 270px;
  min-width: 240px;
  max-width: 340px;
  margin-bottom: 20px;
  padding: 28px 24px 24px 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(44,47,71, 0.07);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .18s, transform .21s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(44,47,71,0.11);
  transform: translateY(-4px) scale(1.012);
  z-index: 2;
}

.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-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 22px 16px 22px;
  background: #FAF6F0;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(44,47,71,0.06);
  margin-bottom: 20px;
  min-width: 215px;
  max-width: 540px;
  margin-right: 20px;
  color: #2C2F47;
}
.testimonial-card p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.07rem;
  color: #2C2F47;
  margin-bottom: 8px;
  line-height: 1.6;
  text-align: center;
}
.testimonial-card strong {
  color: #D984A7;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: .2px;
}

/* --- MAP PLACEHOLDER --- */
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #E2DED6;
  border-radius: 14px;
  padding: 18px 12px;
  margin-top: 12px;
  gap: 8px;
}
.map-placeholder img {
  width: 110px;
  opacity: 0.6;
}

/* --- BUTTONS & CTA --- */
.cta-button {
  display: inline-block;
  padding: 12px 32px;
  background: #D984A7;
  color: #fff !important;
  font-family: 'Playfair Display', Georgia, serif;
  border: none;
  border-radius: 28px;
  font-size: 1.18rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(217,132,167,0.07);
  margin-top: 8px;
  transition: background .19s, color .21s, transform .14s, box-shadow .18s;
  text-align: center;
  letter-spacing: 0.1px;
}
.cta-button:hover, .cta-button:focus {
  background: #2C2F47;
  color: #fff !important;
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 7px 30px rgba(44,47,71,0.13);
}

button, input[type="button"], input[type="submit"] {
  font-family: 'Playfair Display', Georgia, serif;
  outline: none;
}

/* --- FOOTER --- */
footer {
  background: #2C2F47;
  color: #fff;
  padding: 40px 0 12px 0;
}
footer .container { max-width: 1100px; }
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
footer a {
  color: #E2DED6;
  transition: color .16s;
  font-weight: 500;
  font-size: .98rem;
  display: inline-block;
  margin-right: 15px;
}
footer a:hover,
footer a:focus {
  color: #D984A7;
}
footer .text-section p, footer .text-section img {
  color: #E2DED6;
  font-size: .98rem;
  margin-bottom: 7px;
}
footer .text-section img { height: 1.1em; width: auto; margin-right: 7px; vertical-align: middle; }
footer .content-wrapper > a img {
  height: 40px;
  margin-bottom: 8px;
  opacity: .93;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1100px) {
  .container { max-width: 97vw; }
}
@media (max-width: 900px) {
  .container { max-width: 96vw; }
  .content-wrapper, footer .content-wrapper {
    gap: 20px;
  }
  .section { padding: 30px 7vw; }
}
@media (max-width: 768px) {
  main section, .section {
    padding: 23px 0;
    margin-bottom: 38px;
    border-radius: 16px;
  }
  .container { padding: 0 10px; }
  .content-wrapper, footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .card-container, .content-grid, .testimonial-container {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card { margin-right: 0; }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  footer { padding: 24px 0 7px 0; }
  footer .content-wrapper > a img { height: 32px; }
}
@media (max-width: 540px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.05rem; }
  .section { padding: 13px 2vw; }
  .cta-button { font-size: 1rem; padding: 10px 19px; }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #fff;
  color: #2C2F47;
  padding: 20px 16px 24px 16px;
  box-shadow: 0 -2px 18px rgba(44,47,71,0.07);
  z-index: 4000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .38s cubic-bezier(.72, 0, .13, 1),transform .38s cubic-bezier(.72, 0, .13, 1);
}
.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner p {
  font-size: 1rem;
  margin-bottom: 9px;
  text-align: center;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
  margin-top: 0;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  border: none;
  background: #D984A7;
  color: #fff;
  padding: 8px 18px;
  border-radius: 22px;
  font-weight: 600;
  cursor: pointer;
  margin: 4px 0;
  transition: background .17s, color .17s;
}
.cookie-banner .cookie-settings-btn {
  background: #2C2F47;
  color: #fff;
}
.cookie-banner .cookie-accept-btn:hover,
.cookie-banner .cookie-accept-btn:focus {
  background: #21727a;
}
.cookie-banner .cookie-reject-btn {
  background: #E2DED6;
  color: #2C2F47;
}
.cookie-banner .cookie-reject-btn:hover,
.cookie-banner .cookie-reject-btn:focus {
  background: #C8BEC0;
  color: #2C2F47;
}
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner .cookie-settings-btn:focus {
  background: #D984A7;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  bottom: 50%; left: 50%;
  transform: translate(-50%, 60%);
  opacity: 0;
  pointer-events: none;
  background: #fff;
  color: #2C2F47;
  z-index: 4010;
  border-radius: 20px;
  box-shadow: 0 8px 38px rgba(44,47,71, 0.16);
  max-width: 360px;
  width: 92vw;
  padding: 26px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: opacity .35s, transform .37s;
}
.cookie-modal.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.cookie-modal h3 {
  font-size: 1.16rem;
  margin-bottom: 7px;
  font-family: 'Playfair Display', Georgia, serif;
}
.cookie-modal .cookie-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid #E2DED6;
}
.cookie-modal .cookie-cat:last-child { border-bottom: none; }
.cookie-modal .cookie-toggle {
  accent-color: #D984A7;
  width: 22px; height: 22px;
  cursor: pointer;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 13px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 16px; top: 13px;
  background: none;
  color: #2C2F47;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  transition: color .18s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: #D984A7;
}
@media (max-width:520px) {
  .cookie-modal {
    max-width: 94vw;
    padding: 13px 5vw 15px 5vw;
  }
}

/* --- MICRO-INTERACTIONS & TRANSITIONS --- */
.section, .card, .testimonial-card, .cta-button, .cookie-banner, .cookie-modal {
  transition: box-shadow .20s, border .19s, transform .16s, background .17s;
}

/* --- ACCESSIBILITY STATES --- */
.cta-button:focus, button:focus, .mobile-menu-close:focus, .mobile-menu-toggle:focus {
  outline: 2px solid #D984A7;
  outline-offset: 2px;
}

/* --- UTILITY CLASSES --- */
.hide { display: none !important; }

/* --- VISUAL SHADOWS --- */
.card, .testimonial-card, .cookie-banner, .cookie-modal {
  box-shadow: 0 2px 18px rgba(44,47,71,0.06);
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 33px rgba(44,47,71,0.11);
}

/* --- ICONS IN TEXT --- */
p img, li img, .text-section img {
  vertical-align: middle;
  height: 1.1em;
  width: auto;
  margin-right: 6px;
  display: inline;
  opacity: .88;
}

/* --- OLs, DLs & FAQ --- */
ol {
  list-style: decimal inside;
  margin: 0 0 1em 1em;
}
dl {
  margin-bottom: 24px;
}
dl dt {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #2C2F47;
  margin-top: 11px;
  margin-bottom: 4px;
}
dl dd {
  font-size: .98rem;
  color: #444042;
  margin-bottom: 9px;
  margin-left: 9px;
  line-height: 1.7;
}

/* --- CARD GRID SAMPLE --- */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

/* --- MISC --- */
.section ul {
  padding-left: 20px;
}
.section li {
  margin-bottom: 8px;
}

/* --- SCROLLBAR --- */
body, .mobile-menu {
  scrollbar-width: thin;
  scrollbar-color: #D984A7 #E2DED6;
}
body::-webkit-scrollbar {
  width: 8px; background: #E2DED6;
}
body::-webkit-scrollbar-thumb {
  background: #D984A7;
  border-radius: 6px;
}

/* --- END --- */
