/* 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FAF8F7;
  color: #27405B;
  font-family: 'Roboto', Georgia, serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
a {
  color: #27405B;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E1B2A8;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-weight: 700;
  color: #27405B;
  line-height: 1.2;
  margin-bottom: 0.6em;
}
h1 { font-size: 2.5rem; margin-bottom: 0.8em; }
h2 { font-size: 2rem; margin-bottom: 0.7em; }
h3 { font-size: 1.3rem; margin-bottom: 0.5em; }
.subtitle {
  font-family: 'Roboto', Georgia, serif;
  font-size: 1.1rem;
  color: #5C6B7D;
  margin-bottom: 1.5em;
}
p, li, blockquote, cite {
  font-size: 1rem;
  color: #333D4B;
  font-family: 'Roboto', Georgia, serif;
  margin-bottom: 0.7em;
}
blockquote {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: #27405B;
  background: #F4EFED;
  border-left: 4px solid #E1B2A8;
  padding: 16px 20px;
  margin-bottom: 12px;
  border-radius: 8px;
}
cite {
  display: block;
  font-size: 0.98em;
  color: #7A838C;
}
strong { font-weight: 700; color: #27405B; }

/* LAYOUT HELPERS =============================================== */
.container {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(39,64,91,0.03);
}

.text-section {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* FLEXBOX CARD & FEATURE GRIDS ================================ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(39,64,91,0.05);
  padding: 24px 20px;
  width: 100%;
  min-width: 260px;
  flex: 1 1 300px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 4px 14px rgba(39,64,91,0.11);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin-top: 20px;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F6F4F3;
  border-radius: 14px;
  padding: 24px 20px;
  min-width: 240px;
  flex: 1 1 240px;
  box-shadow: 0 2px 4px rgba(228, 205, 197, 0.09);
  margin-bottom: 0;
  margin-top: 0;
  transition: box-shadow 0.18s, background 0.24s;
}
.feature-grid li h3 {
  font-size: 1.1rem;
  color: #27405B;
  line-height: 1.32;
}
.feature-grid li:hover {
  background: #E1B2A8;
  box-shadow: 0 5px 18px rgba(39,64,91,0.13);
}
.feature-grid img {
  width: 36px;
  height: 36px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.testimonial-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 3px 14px rgba(39,64,91,0.10);
  border: 1px solid #ece7e4;
  transition: box-shadow 0.18s, border 0.3s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(39,64,91,0.17);
  border-color: #E1B2A8;
}
.testimonial-card blockquote {
  margin: 0;
  color: #27405B;
  background: transparent;
  padding: 0;
  border: none;
}
.testimonial-card cite {
  color: #7A838C;
  margin-left: 14px;
  font-weight: 500;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid li {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .feature-grid,
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }
  .card {
    min-width: 0;
    width: 100%;
  }
}

/* HEADER & MAIN NAVIGATION ==================================== */
header {
  background: #FFFFFF;
  border-bottom: 1px solid #ECE7E4;
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 60;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 18px 0;
  justify-content: flex-start;
}
.main-nav a {
  font-family: 'Roboto', serif;
  font-size: 1rem;
  color: #27405B;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.17s, background 0.21s;
}
.main-nav a.cta-main {
  background: #27405B;
  color: #FFFFFF;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  border-radius: 14px;
  padding: 10px 24px;
  letter-spacing: 0.01em;
  margin-left: 16px;
  box-shadow: 0 2px 7px rgba(39, 64, 91, 0.07);
  transition: background 0.23s, color 0.17s, box-shadow 0.2s;
}
.main-nav a.cta-main:hover, .main-nav a.cta-main:focus {
  background: #E1B2A8;
  color: #27405B;
  box-shadow: 0 4px 14px rgba(39,64,91,0.16);
  outline: none;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F6F4F3;
  color: #E1B2A8;
}
.main-nav img {
  max-height: 44px;
  margin-right: 14px;
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 10px;
    font-size: 0.93rem;
  }
  .main-nav img {
    margin-right: 0;
    max-height: 38px;
  }
}

/* MOBILE MENU / HAMBURGER ===================================== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 20px;
  background: none;
  color: #27405B;
  border: none;
  font-size: 2.2rem;
  z-index: 100;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #E1B2A8;
  outline-offset: 3px;
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  transform: translateX(-110vw);
  transition: transform 0.33s cubic-bezier(.22,.68,.56,1.01);
  box-shadow: 0 7px 44px rgba(39, 64, 91, 0.20);
  z-index: 999;
  opacity: 1;
  will-change: transform;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #27405B;
  margin: 22px 24px 0 0;
  cursor: pointer;
  transition: color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #E1B2A8;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  margin-top: 35px;
  flex: 1 1 100%;
}
.mobile-nav a {
  font-size: 1.3rem;
  font-family: 'Playfair Display', serif;
  color: #27405B;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 10px;
  transition: background 0.21s, color 0.16s;
  min-width: 36vw;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E1B2A8;
  color: #fff;
}
@media (min-width: 901px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* HERO SECTIONS & FEATURED CTAs =============================== */
.hero, .about-hero, .services-hero, .gallery-hero, .blog-hero, .testimonials-hero, .contact-hero, .thank-you, .policy-summary, .rgpd-overview, .terms-intro, .cookies-intro {
  padding: 64px 0 48px 0;
  background: #FAF8F7;
}
.hero .content-wrapper,
.about-hero .content-wrapper,
.services-hero .content-wrapper,
.gallery-hero .content-wrapper,
.blog-hero .content-wrapper,
.testimonials-hero .content-wrapper,
.contact-hero .content-wrapper,
.thank-you .content-wrapper,
.policy-summary .content-wrapper,
.rgpd-overview .content-wrapper,
.terms-intro .content-wrapper,
.cookies-intro .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.cta, .cta-main, .blog-cta {
  margin-top: 24px;
}

.cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #27405B;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  border-radius: 18px;
  padding: 16px 34px;
  margin-top: 20px;
  box-shadow: 0 3px 18px rgba(39,64,91,0.11);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.22s, color 0.15s, box-shadow 0.22s;
}
.cta-main:hover, .cta-main:focus {
  background: #E1B2A8;
  color: #27405B;
  box-shadow: 0 7px 32px rgba(39,64,91,0.18);
  outline: none;
}

@media (max-width: 600px) {
  .cta-main {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 14px 0;
  }
}

/* SECTIONS, CARDS, SPACING ==================================== */
.section, .about-intro, .services-overview, .services-list, .process, .visit-info, .gallery-highlights, .values, .team, .commitments, .user-rights, .policy-details, .terms-details, .cookies-details, .contact-form, .blog-list {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(39,64,91,0.04);
}

@media (max-width: 768px) {
  .section,
  .about-intro,
  .services-overview,
  .services-list,
  .process,
  .visit-info,
  .gallery-highlights,
  .values, .team, .commitments, .user-rights,
  .policy-details, .terms-details, .cookies-details, .contact-form, .blog-list {
    padding: 26px 8px;
    margin-bottom: 36px;
    border-radius: 13px;
  }
}

/* FOOTER ===================================================== */
footer {
  background: #27405B;
  color: #fff;
  padding: 36px 0 14px 0;
  font-size: 1rem;
}
footer .container {
  padding-left: 20px;
  padding-right: 20px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #E1B2A8;
  font-size: 0.98rem;
  font-family: 'Playfair Display', serif;
  padding: 5px 0;
  text-decoration: none;
  opacity: 0.80;
  transition: color 0.13s, opacity 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  opacity: 1;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.98rem;
  color: #fff;
}
.footer-contact img {
  width: 19px;
  height: 19px;
  vertical-align: middle;
  margin-right: 7px;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    gap: 9px;
  }
  .footer-contact {
    gap: 6px;
  }
}

/* COOKIE CONSENT BANNER + MODAL ============================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #27405B;
  box-shadow: 0 -2px 18px rgba(39,64,91,0.06);
  padding: 26px 16px 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  z-index: 1234;
  font-size: 1rem;
  animation: cookieBannerIn 0.44s cubic-bezier(.16,1.57,.73,.9);
}
@keyframes cookieBannerIn {
  0% { transform: translateY(100%); opacity:0; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  margin: 0;
  flex: 1 1 50vw;
}
.cookie-banner button {
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: 'Roboto', serif;
  border-radius: 10px;
  padding: 11px 22px;
  margin-left: 5px;
  margin-right: 0;
  cursor: pointer;
  transition: background 0.18s, color 0.13s;
  font-weight: 600;
}
.cookie-banner .accept {
  background: #27405B;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #E1B2A8;
  color: #27405B;
}
.cookie-banner .reject {
  background: #ECE7E4;
  color: #27405B;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #27405B;
  color: #fff;
}
.cookie-banner .settings {
  background: #fff;
  color: #27405B;
  border: 1px solid #E1B2A8;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #E1B2A8;
  color: #fff;
}

/* COOKIE PREFS MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(39, 64, 91, 0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 12000;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.23s;
}
.cookie-modal {
  width: 92vw;
  max-width: 390px;
  background: #fff;
  color: #27405B;
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(39,64,91,0.15);
  padding: 32px 26px 18px 26px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: modalAppear 0.37s cubic-bezier(.21,.68,.82,1.73);
  position: relative;
}
@keyframes modalAppear {
  from { transform: translateY(70px) scale(0.98); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 15px;
  font-size: 1.26rem;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.09rem;
  margin: 12px 0;
}
.cookie-modal input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #27405B;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 11px;
}
.cookie-modal button {
  font-family: 'Roboto', serif;
  padding: 9px 21px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  margin-left: 0;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.11s;
}
.cookie-modal .close {
  position: absolute;
  right: 15px;
  top: 16px;
  background: none;
  color: #27405B;
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
  font-weight: 400;
  padding: 6px;
}
.cookie-modal .close:hover, .cookie-modal .close:focus {
  color: #E1B2A8;
}
.cookie-modal .confirm {
  background: #27405B;
  color: #fff;
}
.cookie-modal .confirm:hover, .cookie-modal .confirm:focus {
  background: #E1B2A8;
  color: #27405B;
}
.cookie-modal .cancel {
  background: #ECE7E4;
  color: #27405B;
}
.cookie-modal .cancel:hover, .cookie-modal .cancel:focus {
  background: #27405B;
  color: #fff;
}
.cookie-modal .essential {
  font-weight: 700;
}
@media (max-width: 600px) {
  .cookie-modal {
    max-width: 97vw;
    padding: 18px 8px 12px 10px;
  }
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    font-size: 0.99rem;
    padding: 17px 6px 17px 8px;
  }
  .cookie-banner button {
    width: 100%;
    margin: 4px 0 0 0;
  }
}

/* ANIMATIONS AND INTERACTIONS ================================ */
button, .cta-main, a {
  transition: background 0.22s, color 0.19s, box-shadow 0.18s, border 0.16s;
}
.section, .card, .testimonial-card, .feature-grid li {
  transition: box-shadow 0.18s, background 0.18s, border 0.18s;
}

/* SCROLLBAR STYLING =========================================== */
::-webkit-scrollbar {
  width: 9px;
  background: #ECE7E4;
}
::-webkit-scrollbar-thumb {
  background: #D3C5C0;
  border-radius: 5px;
}

/* GENERAL RESPONSIVE SIZING ================================== */
@media (max-width: 600px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.24rem;
  }
  h3 {
    font-size: 1.07rem;
  }
  body {
    font-size: 15px;
  }
}

/* Z-INDEX RULES ============================================== */
header { z-index: 60; }
.mobile-menu { z-index: 999; }
.cookie-banner { z-index: 1234; }
.cookie-modal-overlay { z-index: 12000; }

/* MISC SMALLS ================================================ */
hr {
  border: none;
  border-top: 1px solid #ECE7E4;
  margin: 2em 0 2em 0;
}
table {
  width: 100%;
  margin: 2em 0;
  border-collapse: collapse;
}
td, th {
  border: 1px solid #ece7e4;
  padding: 8px 16px;
}

/* FORM STYLES - for potential future use ===================== */
input[type="text"], input[type="email"], textarea {
  border: 1px solid #E1B2A8;
  border-radius: 8px;
  padding: 10px 12px;
  font-family: 'Roboto', serif;
  font-size: 1rem;
  background: #fff;
  margin-top: 5px;
  margin-bottom: 17px;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: #27405B;
  outline: none;
}

/* END CSS - no grid, columns, or forbidden properties used */
