/* CSS RESET & BASE TYPOGRAPHY */
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 {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #F9F8F3;
  color: #212236;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.02em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #6B5E51;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #212236;
  text-decoration: underline;
}

/* SOFT PASTEL COLOR PALETTE & SHADOWS */
:root {
  --brand-primary: #212236;
  --brand-accent: #867B6F;
  --brand-secondary: #E2CFC3;
  --brand-white: #FFFFFF;
  --pastel-pink: #FFE6EB;
  --pastel-lavender: #ECE7F7;
  --pastel-mint: #E5F6ED;
  --pastel-blue: #D6E6F6;
  --pastel-beige: #F7F1EC;
  --shadow-card: 0 2px 24px 0 rgba(120,110,100,0.07);
  --shadow-modal: 0 10px 32px 0 rgba(125,117,109,0.18);
  --radius: 18px;
  --radius-btn: 28px;
  --transition: 0.2s cubic-bezier(.7,.2,.4,1);
}

/* CONTAINER & FLEX LAYOUTS */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

footer .container.footer-nav {
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-bottom: 28px;
  padding-top: 24px;
}
footer .container.footer-nav a {
  margin: 0 8px 0 0;
  color: #6B5E51;
  font-size: 14px;
}
footer .container.footer-nav a:last-child {
  margin-right: 0;
}
footer p {
  font-size: 14px;
  color: #867B6F;
  margin-top: 8px;
  text-align: center;
}

/* HEADER */
header {
  background: var(--pastel-beige);
  box-shadow: 0 2px 12px 0 rgba(120,110,100,0.03);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
.logo img {
  height: 54px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--brand-primary);
  font-size: 16px;
  padding: 4px 12px;
  border-radius: var(--radius-btn);
  transition: background 0.15s, color 0.2s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--pastel-mint);
  color: var(--brand-accent);
}

/* BUTTONS */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: var(--radius-btn);
  padding: 12px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--pastel-mint) 50%, var(--pastel-lavender) 100%);
  color: var(--brand-primary);
  cursor: pointer;
  box-shadow: var(--shadow-card);
  margin-left: 12px;
  transition: box-shadow var(--transition), color var(--transition), background var(--transition);
  outline: none;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--pastel-blue);
  color: var(--brand-primary);
  box-shadow: 0 6px 24px 0 rgba(120,110,100,0.13);
}
.btn-secondary {
  background: linear-gradient(90deg, var(--pastel-pink) 30%, var(--pastel-mint) 100%);
  color: var(--brand-primary);
  box-shadow: var(--shadow-card);
  margin-left: 0;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--pastel-lavender);
  color: var(--brand-primary);
  box-shadow: 0 8px 24px 0 rgba(120,110,100,0.13);
}

/* MOBILE MENU BURGER */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 32px;
  color: var(--brand-primary);
  margin-left: 8px;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 1003;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: var(--brand-accent);
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, var(--pastel-mint) 60%, var(--pastel-beige) 100%);
  box-shadow: var(--shadow-modal);
  z-index: 1002;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.84,.13,.43,.98);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--brand-primary);
  margin: 8px 24px 12px 0;
  cursor: pointer;
  z-index: 1004;
  transition: color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
  margin-left: 32px;
  margin-top: 16px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--brand-primary);
  padding: 10px 0;
  border-radius: var(--radius-btn);
  transition: background 0.18s, color 0.18s;
  width: 90%;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--pastel-pink);
  color: var(--brand-accent);
}

@media (max-width: 520px) {
  .mobile-nav {
    margin-left: 10px;
  }
  .mobile-menu-close {
    margin-right: 10px;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, var(--pastel-lavender), var(--pastel-mint) 80%);
  padding: 0;
}
.hero .container {
  min-height: 340px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 48px;
  padding-bottom: 44px;
}
.content-wrapper {
  max-width: 820px;
  margin: 0 auto;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  color: var(--brand-primary);
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.hero .subheadline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: #5C597C;
  margin-bottom: 28px;
}

/* SECTIONS & SPACING */
section {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  margin: 0 auto;
  background: transparent;
  padding-bottom: 0;
}

/* FLEXBOX GRIDS & LAYOUTS */
/* Feature and Card containers */
.feature-grid, .package-teasers, .package-features, .inclusions-list, .benefits-list, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card-container {
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: relative;
  padding: 22px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 7px 26px 0 rgba(120,110,100,0.13);
  transform: translateY(-2px) scale(1.012);
}
.content-grid {
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Cards & Features on desktop */
.feature-grid > div, .package-teasers > li, .package-features > li, .inclusions-list > li, .card {
  background: var(--pastel-beige);
  border-radius: var(--radius);
  padding: 24px 22px 22px 22px;
  box-shadow: var(--shadow-card);
  flex: 1 1 250px;
  margin-bottom: 20px;
  min-width: 220px;
  transition: box-shadow var(--transition), background var(--transition);
}
.feature-grid > div:hover {
  background: var(--pastel-lavender);
  box-shadow: 0 6px 24px 0 rgba(120,110,100,0.13);
}
.feature-grid img {
  height: 38px;
  width: 38px;
  margin-bottom: 12px;
}
.feature-grid h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--brand-primary);
}
.feature-grid p {
  font-size: 15px;
  color: #42425e;
}

/* TEXT SECTIONS */
.text-section {
  background: var(--pastel-lavender);
  border-radius: var(--radius);
  padding: 32px 26px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-card);
}
.text-section h2, .text-section h1 {
  margin-bottom: 20px;
}
.text-section ul, .text-section ol {
  margin: 16px 0 0 18px;
}
.text-section li {
  font-size: 15px;
  margin-bottom: 8px;
}

/* LISTS & TIMELINES */
.package-teasers, .package-features, .inclusions-list, .benefits-list {
  flex-direction: column;
  gap: 14px;
  margin: 20px 0 8px 0;
}
.package-teasers li, .package-features li, .inclusions-list li, .benefits-list li {
  background: var(--pastel-mint);
  padding: 13px 20px;
  border-radius: var(--radius-btn);
  font-size: 16px;
  color: var(--brand-primary);
  margin-bottom: 8px;
  box-shadow: 0 1px 4px 0 rgba(120,110,100,0.04);
}
ol.step-timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style-type: decimal;
  margin-left: 18px;
  margin-bottom: 20px;
}
ol.step-timeline li {
  background: var(--pastel-beige);
  padding: 12px 22px;
  border-radius: 14px;
  font-size: 16px;
  margin-bottom: 6px;
}
ul.planning-tips {
  margin-left: 18px;
  margin-bottom: 10px;
  gap: 0px;
}
ul.planning-tips li {
  background: transparent;
  font-size: 15px;
  margin-bottom: 6px;
}

/* FAQ LISTS */
dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-top: 18px;
  margin-bottom: 2px;
  color: var(--brand-primary);
}
dd {
  font-size: 16px;
  margin-bottom: 10px;
  margin-left: 10px;
  color: #42425e;
}
.faq-list {
  margin-bottom: 14px;
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--pastel-blue);
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: 0 3px 18px 0 rgba(120,110,100,0.09);
  min-width: 200px;
  max-width: 650px;
  color: #1f1f28;
}
.testimonial-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-style: italic;
  color: var(--brand-primary);
  margin-bottom: 0;
  line-height: 1.55;
  flex: 1 1 auto;
  max-width: 75%;
}
.testimonial-card div {
  font-size: 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #695c4d;
  min-width: 120px;
  text-align: right;
}

/* CONTACT */
.contact-section {
  background: var(--pastel-mint);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 40px;
  padding: 32px 24px;
  text-align: center;
}
.contact-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 18px;
}
.contact-section p {
  font-size: 18px;
  margin-bottom: 20px;
}
.contact-details, .office-hours {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.contact-details p {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-details img {
  width: 20px;
  height: 20px;
  margin-right: 7px;
  opacity: 0.85;
}
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--pastel-beige);
  color: #49535f;
  border-radius: 14px;
  padding: 15px 20px;
  font-size: 15px;
  margin-top: 20px;
}

/* TITLES */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--brand-primary);
  font-weight: 800;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 13px;
  margin-top: 30px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

/* UIPATTERNS: FLEX WRAPPERS & UTILITIES */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* VISUAL HIERRARCHY + SPACING */
main {
  margin-top: 0;
  padding-bottom: 32px;
}
section {
  margin-bottom: 54px;
}
.content-wrapper {
  margin-bottom: 0;
}

ul, ol {
  margin-left: 16px;
  margin-bottom: 10px;
}
ul li,
ol li {
  margin-bottom: 7px;
  font-size: 16px;
}

/* MODALS, SHADOWS & EFFECTS */
.modal {
  background: var(--pastel-beige);
  box-shadow: var(--shadow-modal);
  border-radius: var(--radius);
  padding: 40px 36px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, var(--pastel-mint), var(--pastel-pink) 80%);
  color: var(--brand-primary);
  box-shadow: 0 -2px 12px 0 rgba(120,110,100,0.11);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 1100;
  padding: 20px 24px;
  font-size: 16px;
  transition: transform 0.25s cubic-bezier(.74,.01,.34,1.01);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner__buttons {
  display: flex;
  gap: 14px;
  margin-left: 18px;
}
.cookie-btn {
  border: none;
  border-radius: var(--radius-btn);
  background: var(--pastel-lavender);
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 10px 22px;
  box-shadow: 0 1px 7px 0 rgba(120,110,100,0.07);
  cursor: pointer;
  margin-right: 5px;
  transition: background 0.18s, box-shadow 0.25s, color 0.14s;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: var(--pastel-pink);
  color: var(--brand-accent);
}
.cookie-btn--accept {
  background: var(--pastel-mint);
  color: var(--brand-primary);
}
.cookie-btn--accept:hover {
  background: var(--pastel-blue);
  color: var(--brand-accent);
}
.cookie-btn--settings {
  background: var(--pastel-lavender);
  color: var(--brand-primary);
}
.cookie-btn--settings:hover {
  background: var(--pastel-beige);
}

/* COOKIE CONSENT MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(40, 48, 64, 0.22);
  z-index: 1110;
  justify-content: center;
  align-items: center;
  width: 100vw; height: 100vh;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: var(--pastel-beige);
  border-radius: var(--radius);
  box-shadow: var(--shadow-modal);
  padding: 38px 32px 28px 32px;
  max-width: 375px;
  min-width: 260px;
  width: 94vw;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: modalAppear 0.35s ease;
}
@keyframes modalAppear {
  from { transform: scale(0.93) translateY(80px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal strong {
  color: var(--brand-primary);
}
.cookie-modal-label {
  margin-bottom: 7px;
  font-size: 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--brand-primary);
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
  font-size: 15px;
  color: #42425e;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 22px;
}
.cookie-switch input { display: none; }
.cookie-slider {
  position: absolute;
  cursor: pointer;
  border-radius: 22px;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--pastel-blue);
  transition: background 0.18s;
}
.cookie-slider:before {
  position: absolute;
  content: '';
  height: 18px; width: 18px;
  left: 2px; bottom: 2px;
  border-radius: 50%;
  background: var(--brand-primary);
  transition: transform 0.19s;
}
.cookie-switch input:checked + .cookie-slider {
  background-color: var(--pastel-mint);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(22px);
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 11px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 20px;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--brand-primary);
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--brand-accent);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .header .container {
    height: auto;
  }
  .feature-grid, .package-teasers, .package-features, .inclusions-list, .content-grid {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    max-width: 98vw;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .content-wrapper, .text-section, .contact-section {
    padding-left: 8px;
    padding-right: 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .hero .container {
    padding-top: 26px;
    padding-bottom: 25px;
  }
  .hero h1 {
    font-size: 1.9rem;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 9px;
    padding: 14px 10px;
    font-size: 15px;
  }
  .feature-grid > div, .card {
    min-width: 0;
    width: 100%;
    flex-basis: unset;
    padding: 18px 10px;
  }
  .card {
    padding: 18px 10px;
  }
}
@media (max-width: 480px) {
  .logo img {
    height: 38px;
  }
  footer .container.footer-nav p {
    font-size: 11.5px;
  }
  .btn-primary, .btn-secondary {
    font-size: 16px;
    padding: 11px 13px;
  }
  .feature-grid > div, .card {
    padding: 13px 5px;
  }
  .contact-section h2 {
    font-size: 1.28rem;
  }
  .cookie-modal {
    padding: 22px 7vw 15px 7vw;
  }
}

/* MICRO-INTERACTIONS & ANIMATION */
.btn-primary, .btn-secondary, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.18s, color 0.18s, box-shadow 0.22s, transform 0.14s;
}
.btn-primary:active, .btn-secondary:active, .cookie-btn:active, .mobile-menu-toggle:active, .mobile-menu-close:active {
  transform: scale(0.99);
}
.card, .feature-grid > div {
  transition: box-shadow 0.22s, background 0.22s, transform 0.16s;
}

/* SCROLLBARS (subtle pastel scrollbar) */
body {
  scrollbar-color: #E2CFC3 #ECE7F7;
  scrollbar-width: thin;
}
body::-webkit-scrollbar {
  width: 10px;
  background: var(--pastel-lavender);
}
body::-webkit-scrollbar-thumb {
  background: var(--pastel-beige);
  border-radius: 15px;
}
body::-webkit-scrollbar-thumb:hover {
  background: var(--pastel-pink);
}

/* SELECTABLE TEXT */
::selection {
  background: var(--pastel-mint);
  color: var(--brand-primary);
}

/* REMOVE SPACING COLLISIONS (NO OVERLAP) */
.feature-grid > div, .card, .testimonial-card, .content-wrapper, .contact-section, .text-section {
  margin-bottom: 20px;
}

/* END CSS */