/* 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: 16px;}
body {
  background: #F5EFE6;
  color: #1C2227;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #7C5C3B; text-decoration: none; transition: color 0.2s cubic-bezier(.4,0,.2,1); }
a:hover, a:focus { color: #1C2227; }

.container {
  width: 100%;
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #1C2227;
  font-weight: 700;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.625rem; line-height: 1.12; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.04em; }
h4, h5, h6 { font-size: 1rem; }
p, li, span { font-family: 'Lato', Arial, sans-serif; color: #1C2227; font-size: 1rem; }

ul, ol { padding-left: 24px; margin-bottom: 12px; }
ul li, ol li { margin-bottom: 10px; }
strong { font-weight: 600; }
em { font-style: italic; }

/* Button Styles */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1C2227;
  color: #F5EFE6;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 14px 32px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 2px 12px rgba(28,34,39,0.06);
  transition: background 0.2s, color 0.2s, transform 0.15s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #7C5C3B;
  color: #F5EFE6;
  transform: translateY(-2px) scale(1.02);
}

.btn-link {
  color: #7C5C3B;
  font-weight: 500;
  border-bottom: 1.5px solid #7C5C3B;
  padding-bottom: 2px;
  transition: color 0.2s, border 0.2s;
}
.btn-link:hover { color: #1C2227; border-color: #1C2227; }

/* Flex Container Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 24px rgba(28,34,39,0.07);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 260px;
  flex: 1 1 300px;
}
.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 {
  background: #F5EFE6;
  border: 2px solid #E7D3C5;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(28,34,39,0.05);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  flex: 1 1 320px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Specific Flexbox Layouts */
.feature-grid, .value-grid, .feature-list, .mini-testimonials, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.feature-grid > div,
.value-grid > div,
.feature-list > div,
.mini-testimonials > .testimonial-card,
.testimonial-list > .testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(28,34,39,0.07);
  padding: 28px 20px 20px 20px;
  min-width: 240px;
  flex: 1 1 280px;
  border: 1.5px solid #E7D3C5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.event-examples {
  margin-top: 24px;
  background: #fff;
  border: 1.5px solid #E7D3C5;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 2px 8px rgba(28,34,39,0.05);
}

/***** HERO SECTION *****/
.hero {
  width: 100%;
  background: #E7D3C5;
  border-radius: 0 0 60px 60px;
  padding: 64px 0 48px 0;
  margin-bottom: 54px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  gap: 24px;
  align-items: center;
  text-align: center;
}

/***** HEADER & NAVBAR *****/
header {
  width: 100%;
  background: #fff;
  border-bottom: 3px solid #F5EFE6;
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 78px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 16px 20px 16px 20px;
}
header nav {
  display: flex;
  gap: 24px;
}
header nav a {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1C2227;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
  padding: 6px 0;
}
header nav a::after {
  content: '';
  display: block;
  height: 2.5px;
  width: 0;
  background: #7C5C3B;
  border-radius: 2px;
  transition: width .2s cubic-bezier(.4,0,.2,1);
  margin-top: 2px;
}
header nav a:hover::after, header nav a:focus::after {
  width: 60%;
}
header .btn-primary {
  margin-left: 18px;
  font-size: 1rem;
  padding: 11px 22px;
}

/******* MOBILE BURGER MENU ******/
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #1C2227;
  padding: 8px 20px;
  cursor: pointer;
  z-index: 105;
  transition: color .2s;
}
.mobile-menu-toggle:focus { color: #7C5C3B; }

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 2px 22px rgba(28,34,39,0.22);
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.48,.23,.29,.93);
  z-index: 120;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #1C2227;
  padding: 14px 20px 14px 0;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-close:focus { color: #7C5C3B; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 52px;
  padding: 0 34px;
}
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #1C2227;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 10px 0;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E7D3C5;
  color: #7C5C3B;
}

/****** MAIN & GENERAL *******/
main {
  flex: 1 0 auto;
}

/* Cards and Lists */
.collection-categories, .event-category-list {
  margin-top: 14px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-form-info {
  background: #fff;
  border: 1.5px solid #E7D3C5;
  border-radius: 12px;
  padding: 18px 20px;
}

.map-embed {
  background: #E7D3C5;
  padding: 18px 20px;
  border-radius: 10px;
  margin-top: 12px;
}
.address {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.08rem;
  margin-bottom: 12px;
  color: #1C2227;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border: 1.5px solid #E7D3C5;
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 24px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}
.contact-details img { width: 22px; opacity: 0.85; }

/****** FAQ ACCORDION *****/
.faq-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.faq-accordion > div {
  background: #fff;
  border: 1.5px solid #E7D3C5;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(28,34,39,0.05);
  padding: 20px 22px;
  min-width: 260px;
  flex: 1 1 340px;
}
.faq-accordion h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 700;
}

/************* STARS **************/
.star-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 5px;
}
.star-rating img { width: 19px; }

/****** TESTIMONIALS *******/
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #1C2227;
  margin-bottom: 12px;
  font-style: italic;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #7C5C3B;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 600;
}

/********** THANK YOU ***********/
.thank-you-message {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
  margin-top: 28px;
}

/********* FOOTER **********/
footer {
  background: #1C2227;
  color: #F5EFE6;
  width: 100%;
  padding: 36px 0 16px 0;
  font-size: 0.98rem;
  position: relative;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #F5EFE6;
  opacity: 0.92;
  font-family: 'Lato', Arial, sans-serif;
}
.footer-nav a:hover { color: #E7D3C5; opacity:1; }
.footer-brand img { width: 56px; margin-bottom: 16px; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #E7D3C5;
  font-size: 0.98rem;
  font-family: 'Lato', Arial, sans-serif;
  opacity: 0.90;
}

/********* ICON STEPS ***********/
.icon-steps { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 16px; }
.icon-steps img {
  width: 46px;
  height: 46px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 5px rgba(124, 92, 59, 0.13);
  padding: 6px;
  border: 1.5px solid #E7D3C5;
}

/**** Animations and Transitions ****/
.btn-primary, .btn-link, .mobile-nav a, .mobile-menu-toggle, .mobile-menu-close {
  transition: background .2s, color .2s, border .2s, box-shadow .18s, transform .12s;
}
.card, .feature-grid > div, .value-grid > div, .feature-list > div, .testimonial-card, .review-form-info {
  transition: box-shadow .22s, transform .16s;
}
.card:hover, .feature-grid > div:hover, .value-grid > div:hover, .feature-list > div:hover, .testimonial-card:hover {
  box-shadow: 0 6px 36px rgba(28,34,39,0.12);
  transform: translateY(-4px) scale(1.025);
}

/***** COOKIE CONSENT BANNER *****/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #1C2227;
  color: #F5EFE6;
  width: 100vw;
  z-index: 2100;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 20px 22px 28px;
  box-shadow: 0 -4px 16px rgba(28,34,39,0.17);
  font-size: 1rem;
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s cubic-bezier(.48,.23,.29,.93), transform 0.38s cubic-bezier(.48,.23,.29,.93);
}
.cookie-banner.active {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-banner button {
  border: none;
  background: #7C5C3B;
  color: #F5EFE6;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #F5EFE6;
  color: #1C2227;
}
.cookie-banner .cookie-settings-btn {
  background: #E7D3C5;
  color: #1C2227;
  font-weight: 600;
  border: 1px solid #E7D3C5;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #7C5C3B;
  color: #F5EFE6;
}

/****** COOKIE MODAL ******/
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(28,34,39,0.55);
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(.48,.23,.29,.93);
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #1C2227;
  border-radius: 14px;
  max-width: 420px;
  width: 90vw;
  box-shadow: 0 8px 48px rgba(28,34,39,0.16);
  padding: 34px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.48rem;
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 12px; right: 12px;
  background: none;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  color: #7C5C3B;
}
.cookie-modal .close-modal:hover {
  color: #1C2227;
}
.cookie-modal label {
  font-weight: 600;
}
.cookie-modal .toggle-switch {
  width: 38px;
  height: 22px;
  border-radius: 14px;
  background: #E7D3C5;
  position: relative;
  margin-left: 6px;
  border: 1px solid #E7D3C5;
  display: inline-block;
  vertical-align: middle;
}
.cookie-modal .toggle-switch input {
  display: none;
}
.cookie-modal .toggle-switch .dot {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #7C5C3B;
  border-radius: 50%;
  transition: transform 0.19s;
}
.cookie-modal .toggle-switch input:checked + .dot {
  transform: translateX(16px);
  background: #1C2227;
}
.cookie-modal .category-desc {
  font-size: 0.98rem;
  color: #555;
  margin-left: 10px;
}
.cookie-modal .category-essential label {
  opacity: 0.74;
}
.cookie-modal .category-essential .toggle-switch {
  opacity: 0.4;
  pointer-events: none;
}

.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .cookie-modal-actions button {
  border: none;
  padding: 8px 16px;
  border-radius: 7px;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: #7C5C3B;
  color: #fff;
  transition: background .15s;
}
.cookie-modal .cookie-modal-actions button:hover { background: #1C2227; color: #F5EFE6; }
.cookie-modal .cookie-modal-actions .reject-btn {
  background: #E7D3C5;
  color: #1C2227;
}
.cookie-modal .cookie-modal-actions .reject-btn:hover { background: #7C5C3B; color: #F5EFE6; }

/********** Responsive Design ***********/
@media (max-width: 1100px) {
  .container { max-width: 98vw; }
  .hero { padding: 44px 0 36px 0; }
}

@media (max-width: 900px) {
  .feature-grid, .value-grid, .feature-list, .content-grid, .mini-testimonials, .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
  .card, .feature-grid > div, .value-grid > div, .feature-list > div, .testimonial-card, .mini-testimonials > .testimonial-card, .testimonial-list > .testimonial-card { min-width: unset; }
  header .container { gap: 16px; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.38rem; }
  .container, .section { padding-left: 8px; padding-right: 8px; }
  .section { padding: 32px 8px; }
  .hero { border-radius: 0 0 40px 40px; padding: 22px 0 26px 0; }
  .content-wrapper { gap: 18px; }
  .contact-details { padding: 10px 10px; gap: 12px; }
  .footer-brand img { width: 44px; }
  .footer-contact { font-size: 0.92rem; }
  .icon-steps img { width: 38px; height: 38px; }
}

@media (max-width: 700px) {
  header nav, header .btn-primary { display: none; }
  .mobile-menu-toggle { display: block; }
  header .container { justify-content: space-between; }
  .footer-nav { flex-direction: column; gap: 6px; }
  .container, .section { padding-left: 5px; padding-right: 5px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.1rem; }
  .hero { border-radius: 0 0 30px 30px; }
  .btn-primary { font-size: 0.98rem; padding: 10px 14px; }
}

@media (max-width: 450px) {
  .cookie-modal { padding: 16px 5px 12px 8px; }
  .cookie-modal .cookie-modal-actions {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
}

/****** Hide scrollbars for overlays *****/
.mobile-menu, .cookie-modal-overlay { -ms-overflow-style: none; scrollbar-width: none; }
.mobile-menu::-webkit-scrollbar, .cookie-modal-overlay::-webkit-scrollbar { display: none; }

/****** Custom Scrollbar for site *****/
body {
  scrollbar-color: #7C5C3B #F5EFE6;
  scrollbar-width: thin;
}
body::-webkit-scrollbar {
  width: 8px;
  background: #F5EFE6;
}
body::-webkit-scrollbar-thumb {
  background: #E7D3C5;
  border-radius: 12px;
}

/******************************
  GEOMETRIC STRUCTURED DETAILS
******************************/
.card, .feature-grid > div, .value-grid > div, .feature-list > div, .testimonial-card {
  border-radius: 18px 30px 10px 22px;
  border-width: 2px 3px 2px 3px;
  border-style: solid;
  border-color: #E7D3C5;
  box-shadow: 0 3px 17px 0 rgba(28,34,39,0.06), 0 0.5px 8px 0 #E7D3C5;
  position: relative;
}

.section {
  position: relative;
  background: linear-gradient(90deg, #FFF 70%, #F5EFE6 100%);
  border-radius: 36px 20px 28px 50px;
  box-shadow: 0 2.5px 16px rgba(28,34,39,0.04);
}
.section:before {
  content: '';
  position: absolute;
  left: 42px; top: 22px;
  width: 46px; height: 46px;
  background: #7C5C3B;
  opacity: 0.06;
  border-radius: 13px 21px 11px 16px;
  z-index: 0;
}

.feature-grid > div::after, .value-grid > div::after, .testimonial-card::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 12px; right: 17px;
  width: 38px; height: 20px;
  background: #7C5C3B;
  opacity: 0.07;
  border-radius: 12px 30px 8px 14px;
  z-index: 1;
  pointer-events: none;
}

/****** Geometric SVG icon mask demo *****/
svg.geoshape {
  display: block;
  width: 44px;
  height: 44px;
  background: #E7D3C5;
  border-radius: 20% 60% 28% 40%;
}

/********************************/
/* Utility Classes for Spacing  */
/********************************/
.mt-0 { margin-top: 0 !important; }
.mt-12 { margin-top: 12px !important; }
.mt-24 { margin-top: 24px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.gap-24 { gap: 24px !important; }
.gap-32 { gap: 32px !important; }

/* Hide visually but keep for a11y (e.g. skip links) */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  border: 0 !important;
}
