/* 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after { box-sizing: inherit; }

body {
  min-height: 100vh;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  color: #251C18;
  background: #FFF;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.18s; }
strong, b { font-weight: bold; }

ul, ol { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #181C22;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.12;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  font-weight: 600;
}
.subheadline {
  color: #C2A661;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.18rem;
}
p {
  margin-bottom: 14px;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(194,166,97,0.10);
  padding: 28px 20px;
  transition: box-shadow 0.25s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(35,5,95,0.09);
  transform: translateY(-4px) scale(1.02) rotate(-1deg);
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  margin-bottom: 20px;
  background: #F5F5F5;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(24,28,34,0.10);
  position: relative;
  font-size: 1.08rem;
  transition: box-shadow 0.23s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 18px rgba(194,166,97,0.13);
  transform: scale(1.015) rotate(1.4deg);
  z-index: 3;
}
.testimonial-info {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 1.0rem;
  color: #181C22;
  font-family: 'Lato', Arial, sans-serif;
  opacity: 0.88;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(87deg,#F7C873 0%,#E4E3E0 100%);
  padding: 60px 0 40px 0;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  color: #181C22;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2.5rem;
}
.hero .subheadline {
  font-size: 1.28rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.hero .button-primary {
  margin-top: 8px;
}

/* FEATURE SECTIONS, GRIDS & LISTS */
.features, .feature-grid, .feature-list {
  width: 100%;
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 12px;
}
.feature-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #FFFDEB;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(244,196,70,.07);
  padding: 28px 18px;
  min-width: 180px;
  max-width: 270px;
  flex: 1 1 220px;
  transition: box-shadow 0.22s, transform 0.14s;
  margin-bottom: 8px;
  border: 2px solid transparent;
  position: relative;
}
.feature-grid > div:hover {
  border-color: #C2A661;
  box-shadow: 0 6px 22px rgba(194,166,97,0.17);
  transform: scale(1.04) rotate(-1.5deg);
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #F3F4F9;
  border-radius: 12px;
  padding: 20px 14px;
  min-width: 200px;
  flex: 1 1 200px;
  font-size: 1.01rem;
  margin-bottom: 4px;
  transition: box-shadow 0.19s;
  box-shadow: 0 1.5px 7px rgba(194,166,97,0.06);
}
.feature-list img {
  width: 38px; height: 38px; flex-shrink: 0;
  filter: hue-rotate(-8deg) saturate(1.1);
}
.feature-list li:hover {
  box-shadow: 0 6px 16px rgba(244,196,70,.11);
  background: #FFF7ED;
}

/* SERVICES GRID / LISTS */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}
.services-grid > div {
  background: #FFF;
  border-radius: 15px;
  box-shadow: 0 2px 12px rgba(24,28,34,0.06);
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 260px;
  padding: 22px 13px 15px;
  margin-bottom: 20px;
  position: relative;
  border: 2px solid #F7C873;
  transition: box-shadow 0.21s, border-color 0.21s;
}
.services-grid > div:hover {
  box-shadow: 0 7px 24px rgba(255,218,54,0.13);
  border-color: #C2A661;
}
.services-grid h3 { color: #181C22; font-size: 1.17rem; margin-bottom: 6px; }
.services-grid span { color: #C2A661; font-weight: bold; font-size: 1rem; }

.services-list {
  margin: 35px 0 0 0;
}
.services-list ul{
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.services-list li {
  background: #F3F3F9;
  border-radius: 14px;
  padding: 26px 14px 18px;
  box-shadow: 0 2px 12px rgba(35,5,95,0.05);
  font-size: 1.08rem;
}
.services-list h3 {
  font-size: 1.18rem;
  margin-bottom: 4px;
  font-family: 'Playfair Display', serif;
  color: #C2A661;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.services-list h3 span {
  background: #FFFDEE;
  color: #A6812E;
  border-radius: 8px;
  padding: 2px 9px 2px 9px;
  font-size: 1.08rem;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 600;
}

/* BUTTONS */
.button-primary, .button-outline {
  display: inline-block;
  border-radius: 100px;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  margin-right: 10px;
  margin-bottom: 8px;
  padding: 13px 36px;
  text-align: center;
  line-height: 1.2;
  outline: none;
  transition: 
    background 0.19s,
    color 0.19s,
    box-shadow 0.18s,
    transform 0.16s;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(194,166,97,0.06);
  border: 0;
}
.button-primary {
  background: #C2A661;
  color: #181C22;
  box-shadow: 0 7px 18px rgba(194,166,97,0.09);
  border: 2px solid #C2A661;
  letter-spacing: 1.2px;
}
.button-primary:hover,
.button-primary:focus {
  background: #181C22;
  color: #FFF;
  border-color: #181C22;
  transform: scale(1.05) rotate(-2deg);
}
.button-outline {
  background: #FFF;
  border: 2px solid #C2A661;
  color: #C2A661;
}
.button-outline:hover, .button-outline:focus {
  background: #FFFDEB;
  color: #171C22;
  border-color: #C2A661;
  transform: scale(1.045) rotate(1deg);
}

nav a,
.footer-nav a {
  transition: color 0.18s, background 0.17s, box-shadow 0.2s;
  padding: 8px 14px;
  border-radius: 20px;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  margin: 0 4px;
}
nav a:hover, .footer-nav a:hover {
  color: #C2A661;
  background: #FFFDEB;
  box-shadow: 0 2px 10px rgba(244,196,70,0.08);
}

/* HEADER, LOGO & NAV */
header {
  width: 100%;
  background: #FFF6EA;
  box-shadow: 0 1px 12px rgba(194,166,97,0.08);
  padding: 0 12px;
  position: relative;
  z-index: 39;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  min-height: 64px;
}
header .container { max-width: none; padding: 0 12px; }
header > a img {
  height: 50px;
  margin-right: 36px;
  margin-left: 2px;
  margin-top: 6px;
  margin-bottom: 6px;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
  margin-left: 2px;
  flex: 1 1 auto;
}
header .button-primary { margin-left: 18px; }

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: #C2A661;
  color: #fff;
  border: none;
  font-size: 2.1rem;
  border-radius: 7px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 20px;
  transition: background 0.15s, color 0.15s, box-shadow 0.2s;
  z-index: 60;
  box-shadow: 0 2px 14px rgba(194,166,97,0.15);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F5F5F5;
  color: #C2A661;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: #FFF6EA;
  z-index: 120;
  transform: translateX(-102vw);
  transition: transform 0.36s cubic-bezier(.7,.23,.27,1.12);
  box-shadow: 6px 0 60px rgba(0,0,0,.10);
  padding: 0 0 0 0;
  visibility: hidden;
}
.mobile-menu.active {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  background: #FFFDEB;
  border: 2px solid #F7C873;
  color: #181C22;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 20px; right: 28px;
  cursor: pointer;
  z-index: 180;
  box-shadow: 0 2px 16px rgba(250,220,53,0.13);
  transition: background 0.14s, color 0.14s;
}
.mobile-menu-close:focus,.mobile-menu-close:hover {
  background: #F5F5F5;
  color: #C2A661;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 90px;
  width: 100%;
  padding: 0 28px;
}
.mobile-nav a {
  font-size: 1.42rem;
  padding: 15px 6px 15px 13px;
  border-radius: 44px;
  color: #181C22;
  background: #FFFDEB;
  margin-bottom: 4px;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 1px 8px rgba(244,196,70,0.03);
  transition: background 0.15s, color 0.14s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #C2A661;
  color: #fff;
}

@media (max-width: 1024px) {
  .main-nav { gap: 4px; }
}
@media (max-width: 900px) {
  .main-nav { gap: 1px; }
}
@media (max-width: 900px) {
  header .main-nav, header .button-primary {
    display: none;
  }
  .mobile-menu-toggle { display: flex; }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .feature-list,.feature-grid, .services-grid {
    gap: 16px;
  }
  .feature-list li,.feature-grid > div,.services-grid > div {
    min-width: 92vw;
    max-width: 98vw;
    margin: 0 auto 16px auto;
    padding: 24px 12px;
  }
}

/* FOOTER */
footer {
  width: 100%;
  background: #181C22;
  color: #FFF;
  padding: 38px 0 14px 0;
}
footer .container { max-width: 1100px; }
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}
.footer-nav a {
  color: #FFF;
  font-size: 1.06rem;
  padding: 4px 12px;
  border-radius: 19px;
  background: none;
}
.footer-nav a:hover { color: #C2A661; background: #FFFDEB; }
.socials {
  display: flex;
  gap: 19px;
  align-items: center;
}
.socials img { width: 30px; height: 30px; transition: transform 0.18s; }
.socials img:hover { transform: scale(1.15) rotate(-6deg); }
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
  font-size: .98rem;
}
.legal-links a {
  color: #C2A661;
  transition: color 0.16s;
}
.legal-links a:hover { color: #FFFDEB; }

@media (max-width: 780px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
  }
  .footer-nav, .legal-links, .socials {
    justify-content: center;
    text-align: center;
    margin-bottom: 3px;
    width: 100%;
  }
}

/* CONTACT SECTIONS */
.contact, .contact-details {
  background: #F3F9FF;
  border-radius: 12px;
  padding: 24px 16px;
  margin-bottom: 38px;
}
.contact-details ul, .contact ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 1.07rem;
}
.contact ul li strong, .contact-details ul li strong {
  color: #C2A661;
  font-weight: bold;
}
.contact a {
  text-decoration: underline;
  color: #C2A661;
  font-weight: 600;
}

/* LEGAL PAGE STYLES */
.text-section ul, .text-section ol {
  margin-left: 26px;
  margin-bottom: 10px;
  font-size: 1.03rem;
}
.text-section ul li, .text-section ol li {
  margin-bottom: 9px;
}
.text-section h2, .text-section h3 {
  margin-top: 25px;
}
.text-section a {
  color: #C2A661;
  font-weight: 700;
  border-bottom: 1.5px dotted #C2A661;
}
.text-section a:hover { color: #181C22; border-bottom: 1.5px solid #181C22; }

/* Info/Thank You Page */
.info .content-wrapper {
  background: #FFFDEB;
  border-radius: 14px;
  max-width: 570px;
  margin: 20px auto 10px auto;
  box-shadow: 0 1px 14px rgba(194,166,97,0.13);
  padding: 34px 22px;
  text-align: left;
}
.info h2, .info h3 {color: #C2A661; margin-top: 18px;}
.info ul {margin-left: 20px; font-size: 1.03rem; margin-bottom: 12px;}

/* Utility: Animation playful floating elements */
@keyframes floaty {
  0% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-10px) rotate(-1.5deg); }
  100%{ transform: translateY(0) rotate(0); }
}
.feature-grid > div, .feature-list li {
  animation: floaty 5.2s cubic-bezier(.45,.08,.47,1.13) infinite;
}
.testimonial-card {
  animation: floaty 7.1s cubic-bezier(.45,.08,.47,1.13) infinite;
}
.socials img {
  animation: floaty 6s linear infinite;
  animation-delay: .7s;
}

/* Cookie Consent Banner & Modal */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: #FFFDEB;
  color: #181C22;
  padding: 20px 22px 16px;
  box-shadow: 0 -6px 40px rgba(24,28,34,0.08);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-size: 1.07rem;
  border-top: 2.5px solid #C2A661;
  transition: transform 0.28s cubic-bezier(.44,.24,.63,1.22), opacity 0.21s;
}
.cookie-banner.hide {
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cookie-banner button {
  min-width: 110px;
  padding: 9px 20px;
  border-radius: 24px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  background: #C2A661;
  color: #181C22;
  box-shadow: 0 3px 12px rgba(194,166,97,0.09);
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #181C22;
  color: #FFF;
}
.cookie-banner .cookie-settings {
  background: #fffde7;
  color: #181C22;
  border: 2px solid #C2A661;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(21,18,12,0.44);
  z-index: 2025;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.cookie-modal-overlay.active {
  display: flex;
  animation: fadeInModal .17s ease-in;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #FFFDEB;
  border: 2px solid #C2A661;
  border-radius: 20px;
  max-width: 430px;
  width: 100%;
  padding: 36px 28px 22px 28px;
  box-shadow: 0 4px 38px rgba(194,166,97,0.17);
  font-size: 1.08rem;
  color: #181C22;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h3 {
  font-family: 'Playfair Display',serif;
  font-size: 1.19rem; color: #181C22; margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}
.cookie-modal .toggle {
  appearance: none;
  width: 48px;
  height: 24px;
  background: #C2A661;
  border-radius: 16px;
  position: relative;
  outline: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(194,166,97,0.13);
  transition: background 0.16s;
}
.cookie-modal .toggle:checked {
  background: #40C297;
}
.cookie-modal .toggle:disabled {
  background: #E5E5E5;
  cursor: default;
}
.cookie-modal .toggle:before {
  content: '';
  position: absolute;
  left: 4px; top: 3px;
  width: 18px; height: 18px;
  background: #FFF;
  border-radius: 50%;
  transition: transform 0.22s;
}
.cookie-modal .toggle:checked:before {
  transform: translateX(23px);
}
.cookie-modal .toggle:disabled:before {
  background: #CCC;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 13px;
}
.cookie-modal-actions button {
  border-radius: 24px;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 9px 20px;
  border: none;
  background: #C2A661;
  color: #181C22;
  transition: background 0.12s, color 0.12s;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: #181C22;
  color: #fff;
}
.cookie-modal-close {
  background: #FFFDEB;
  color: #181C22;
  border: 2px solid #C2A661;
  margin-left: 10px;
}
.cookie-modal-close:hover { background: #C2A661; color: #fff; }

/* Animations for playful_dynamic */
@keyframes bounceIn {
  0% { transform: scale(0.94); }
  55% { transform: scale(1.06); }
  80% { transform: scale(0.98); }
  100% { transform: scale(1); }
}
.button-primary, .button-outline, .card, .testimonial-card, .feature-list li, .feature-grid > div {
  animation: bounceIn 0.95s cubic-bezier(.68,-0.55,.27,1.55) 1;
}

/* RESPONSIVE STYLES */
@media (max-width: 900px) {
  .hero h1 { font-size: 2rem; }
  .container { max-width: 97vw; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .hero {
    padding: 40px 0 24px 0;
    min-height: 160px;
  }
  .content-wrapper, .text-section {
    gap: 13px;
  }
  .feature-grid, .feature-list {
    flex-direction: column;
    align-items: stretch;
  }
  .card-container {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .testimonial-card {
    padding: 18px 10px;
    margin-bottom: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 15px;
  }
  .services-grid {
    flex-direction: column;
    gap: 12px;
  }
  header > a img {
    height: 38px;
    margin-right: 18px;
  }
  .mobile-menu-close {
    top: 10px; right: 10px;
    width: 38px; height: 38px; font-size: 1.8rem;
  }
}
@media (max-width: 500px) {
  .hero h1 { font-size: 1.34rem; }
  .section { padding: 18px 2px; }
}

/* ACCESSIBILITY, SELECTION & MISC */
::selection {
  background: #C2A661;
  color: #fff;
}
:focus {
  outline: 2px solid #F7C873;
  outline-offset: 1px;
}

::-webkit-scrollbar {
  width: 9px;
  background: #FFFDEB;
}
::-webkit-scrollbar-thumb {
  background: #C2A661;
  border-radius: 9px;
}

/* ----------- END ----------- */
