/* 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,
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; }
*, *:before, *:after { box-sizing: inherit; }
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #25324B;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; transition: color .2s; }
a:focus { outline: 2px solid #A78E5A; outline-offset: 2px; }
ul, ol { list-style: none; }
img {
  max-width: 100%;
  display: block;
  border: 0;
}
button { font-family: inherit; font-size: 1em; border: none; cursor: pointer; background: none; padding: 0; }

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css?family=Merriweather:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Merriweather', serif;
  color: #25324B;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
@media (max-width: 480px) { h1 { font-size: 2rem; } }
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
@media (max-width: 480px) { h2 { font-size: 1.5rem; } }
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  font-weight: 700;
}
p, li, span, label {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #35394B;
  line-height: 1.7;
}
.subheadline {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  color: #74644B;
  margin-bottom: 22px;
  font-weight: 600;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 0;
  /* extra separation only in .section */
}

/* SECTION SPACING */
section {
  background: #fff;
  border-radius: 36px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 3px 24px 0 rgba(37,50,75,0.06);
  /* Subtle lift effect for luxury */
}
@media (max-width: 768px) {
  section {
    border-radius: 18px;
    margin-bottom: 40px;
    padding: 28px 10px;
  }
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #E7E8EB;
  box-shadow: 0 2px 12px 0 rgba(37,50,75,0.06);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
header a img {
  height: 40px;
  margin-right: 35px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #25324B;
  padding: 7px 14px;
  border-radius: 8px;
  transition: color .17s, background .17s;
  font-weight: 600;
}
.main-nav a:hover,
.main-nav a.active {
  background: #F8F7F4;
  color: #A78E5A;
}
.main-nav .button.primary {
  margin-left: 14px;
}

/* MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  background: none;
  border-radius: 50%;
  color: #A78E5A;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  z-index: 21;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F8F7F4;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(37, 50, 75, 0.96);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.55,.1,.55,1);
  padding-top: 18px;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #A78E5A;
  font-size: 2.3rem;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  margin-left: 15px;
  margin-bottom: 10px;
  align-self: flex-end;
  transition: background .18s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: rgba(167,142,90,.15);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 0 32px;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: #fff;
  padding: 12px 0;
  border-bottom: 1px solid rgba(167,142,90,0.12);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border-radius: 0;
  transition: color .17s, background .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(167,142,90,0.08);
  color: #FFD700;
}

@media (max-width: 1000px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 1001px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* BUTTONS */
.button,
a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  padding: 12px 30px;
  background: #A78E5A;
  color: #fff;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 12px 0 rgba(167,142,90,0.14);
  border: none;
  cursor: pointer;
  margin-top: 18px;
  transition: background .18s, color .18s, box-shadow .18s;
  outline: none;
  position: relative;
  min-width: 148px;
}
.button.primary:hover, .button.primary:focus {
  background: #D7C08E;
  color: #25324B;
  box-shadow: 0 3px 24px 0 rgba(167,142,90,0.22);
}
.button.secondary, a.button.secondary {
  background: #25324B;
  color: #fff;
  border: 2px solid #A78E5A;
}
.button.secondary:hover, .button.secondary:focus {
  background: #fff;
  color: #A78E5A;
  border: 2px solid #A78E5A;
}

/* SPACING UTILITIES & FLEX LAYOUTS */
.card-container, .feature-grid, .news-list, .event-calendar, .service-list, .content-grid, .footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 980px) {
  .card-container, .feature-grid, .service-list, .content-grid { gap: 18px; }
}

.card, .detail-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 14px 0 rgba(167,142,90,0.08);
  padding: 32px 28px 24px 28px;
  flex: 1 1 320px;
  margin-bottom: 20px;
  position: relative;
  border: 1.5px solid #E7E8EB;
  transition: box-shadow .15s, border .15s;
}
.card:hover, .detail-card:hover {
  box-shadow: 0 8px 32px 0 rgba(167,142,90,0.15);
  border: 1.5px solid #A78E5A;
  z-index: 2;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F7F6F1;
  border-left: 7px solid #A78E5A;
  box-shadow: 0 2px 9px 0 rgba(37,50,75,0.07);
  border-radius: 22px;
  padding: 20px 28px 18px 24px;
  margin-bottom: 20px;
  transition: box-shadow .15s, border .15s;
  color: #25324B;
}
.testimonial-card p {
  color: #222;
  font-size: 1.09rem;
  font-style: italic;
  margin-bottom: 12px;
}
.testimonial-card span {
  color: #74644B;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 210px;
  width: 100%;
  margin-bottom: 24px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

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

/* CONTENT/LIST LAYOUTS */
.news-list, .event-calendar {
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.detail-card {
  min-width: 260px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-left: 5px solid #A78E5A;
  background: #FCFCFA;
}
.price {
  font-size: 1.12rem;
  color: #A78E5A;
  font-weight: 700;
}

@media (max-width: 900px) {
  .service-list {
    flex-direction: column;
    gap: 20px;
  }
}

/* FOOTER */
footer {
  margin-top: 48px;
  background: #25324B;
  color: #E7E8EB;
  padding: 40px 0 24px 0;
  border-radius: 36px 36px 0 0;
}
footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 44px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-menu a {
  color: #A78E5A;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  transition: color .17s;
  padding: 4px 0;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #FFD700;
}
.brand-info {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #E7E8EB;
  font-size: 1rem;
}
.brand-info img {
  height: 24px;
  margin-right: 15px;
}
footer span {
  color: #CABF90;
  font-size: 1em;
}
@media (max-width: 900px) {
  footer .container { flex-direction: column; align-items: flex-start; gap: 24px; }
}

/* MISC */
strong {
  color: #25324B;
  font-weight: 700;
}

hr {
  border: none;
  border-top: 1px solid #E7E8EB;
  margin: 28px 0;
}

/* FORM/CONTACT DETAILS */
.contact-details {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-details a {
  color: #A78E5A;
  text-decoration: underline;
  font-weight: 600;
}

/* ICON IMAGE STANDARD */
.feature-grid img,
.feature-item img {
  height: 54px;
  width: 54px;
  object-fit: contain;
  margin-bottom: 8px;
  filter: drop-shadow(0px 1px 2px rgba(167,142,90,.12));
}

/* RESPONSIVE STYLES */
@media (max-width: 600px) {
  h1 { font-size: 1.55rem !important; }
  .button, a.button { font-size: 1em; padding: 12px 16px; }
  section { padding: 18px 2px; }
  .card, .detail-card, .testimonial-card {
    padding: 18px 10px;
    border-radius: 14px;
  }
}

@media (max-width: 420px) {
  .container { padding: 0 7px; }
  footer { border-radius: 0; }
}

/* TESTIMONIAL SLIDER HORIZONTAL FLEX (Index) */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 650px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 12px;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: #25324B;
  box-shadow: 0 -6px 32px rgba(37,50,75,0.20);
  border-top: 4px solid #A78E5A;
  z-index: 3000;
  padding: 28px 14px 20px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 1rem;
  transition: transform .35s cubic-bezier(.77,0,.18,1);
  animation: cookieSlideUp 0.7s;
}
@keyframes cookieSlideUp {
  from { transform: translateY(110%); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner .button, .cookie-banner .cookie-settings {
  min-width: 120px;
  font-size: 1rem;
  background: #A78E5A;
  color: #fff;
  border-radius: 28px;
  padding: 10px 22px;
  margin-top: 0;
  margin-bottom: 0;
  border: none;
  transition: background .18s, color .18s;
}
.cookie-banner .button:hover, .cookie-banner .cookie-settings:hover {
  background: #D7C08E;
  color: #25324B;
}
.cookie-banner .button.secondary {
  background: #fff;
  color: #A78E5A;
  border: 2px solid #A78E5A;
}
.cookie-banner .button.secondary:hover {
  background: #A78E5A;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(37,50,75,0.86);
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieFadeIn 0.33s;
}
@keyframes cookieFadeIn { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal-content {
  background: #fff;
  color: #25324B;
  border-radius: 24px;
  max-width: 480px;
  padding: 38px 24px 24px 24px;
  box-shadow: 0 5px 42px 0 rgba(37,50,75,0.19);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookieContentPop .4s;
}
@keyframes cookieContentPop { from { transform:scale(.88); opacity:0 } to { transform:scale(1); opacity:1 } }
.cookie-modal-content h2 {
  font-size: 1.4rem;
  font-family: 'Merriweather', serif;
  color: #25324B;
  margin-bottom: 14px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #F0EDE5;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 600;
  color: #25324B;
}
.cookie-toggle {
  width: 40px;
  height: 24px;
  background: #E7E8EB;
  border-radius: 14px;
  box-shadow: inset 0 1px 7px rgba(37,50,75,0.10);
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: background .15s;
}
.cookie-toggle-input {
  display: none;
}
.cookie-toggle-slider {
  width: 18px;
  height: 18px;
  background: #A78E5A;
  border-radius: 50%;
  position: absolute;
  left: 3px;
  top: 3px;
  transition: left .18s, background .13s;
}
.cookie-toggle-input:checked + .cookie-toggle-slider {
  background: #25324B;
  left: 19px;
}
.cookie-modal-content .cookie-close {
  position: absolute;
  right: 0;
  top: 0;
  background: none;
  font-size: 2rem;
  color: #A78E5A;
  border: none;
  border-radius: 18px;
  width: 46px;
  height: 46px;
  transition: background .18s;
  z-index: 5;
}
.cookie-modal-content .cookie-close:hover {
  background: #F8F5EC;
}
.cookie-modal-content .cookie-buttons {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

/* UTILITIES */
.hide { display: none !important; }
.visible { display: block !important; }
@media (max-width: 560px) {
  .cookie-modal-content {
    max-width: 95vw;
    padding: 18px 5px 14px 8px;
    border-radius: 8px;
  }
}

/* ANIMATIONS FOR BUTTONS & INTERACTIONS */
.button, a.button, .mobile-menu-toggle, .mobile-menu-close {
  transition: box-shadow .15s, background .18s, color .18s, transform .13s;
}
.button:active, .mobile-menu-toggle:active, .mobile-menu-close:active {
  transform: scale(.96);
  box-shadow: 0 1px 3px rgba(167,142,90,0.15);
}

/* VISUAL DIVIDERS & DELICATE GOLD ACCENTS */
hr, .divider {
  border: none;
  border-top: 1.5px solid #A78E5A;
  margin: 32px 0;
}

/* SUBTLE CARD BORDERS */
.card, .detail-card, .testimonial-card, .feature-item {
  border-radius: 22px;
}

/* THANK-YOU PAGE SPECIAL */
.thank-you-message {
  font-size: 1.23rem;
  color: #25324B;
  font-family: 'Merriweather', serif;
  margin-bottom: 18px;
  font-style: italic;
}
.next-steps-info {
  color: #74644B;
  font-size: 1rem;
  margin-bottom: 16px;
}

/* Z-INDEX HIERARCHY */
header { z-index: 20; }
.mobile-menu { z-index: 200; }
.cookie-modal { z-index: 3100; }
.cookie-banner { z-index: 3000; }

/* MEDIA QUERIES FOR LAYOUT FLEX CHANGES */
@media (max-width: 768px) {
  .content-grid, .feature-grid, .footer-menu, .card-container {
    flex-direction: column !important;
    gap: 20px !important;
    align-items: stretch !important;
  }
  footer .container { flex-direction: column; gap: 16px;}
}

/* CUSTOM SCROLLBAR (WEBKIT) */
::-webkit-scrollbar { width: 8px; background: #F0E3CC; }
::-webkit-scrollbar-thumb { background: #A78E5A; border-radius: 8px; }

/* SELECTION COLOR */
::selection { background: #A78E5A; color: #fff; }

/* END OF CSS */
