/* RESET & BASE STYLES */
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;
  background: none;
  box-sizing: border-box;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  outline: none;
  transition: color .18s, background .18s, box-shadow .2s;
}

*, *:before, *:after {
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica', Arial, sans-serif;
  font-size: 16px;
  background: #F6F3EE;
  color: #3E3632;
  min-height: 100vh;
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
}

ul, ol {
  padding-left: 1.5em;
  margin-bottom: 20px;
}

li {
  margin-bottom: 12px;
  list-style: disc outside;
}
strong {
  font-weight: bold;
}

/* SPACING & TEXT SCALE */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  max-width: 680px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'EB Garamond', Garamond, serif;
  font-weight: 700;
  color: #231c14;
  line-height: 1.1;
  text-shadow: 0 2px 24px rgba(188,150,73,.07);
}
h1 { font-size: 2.6rem; margin-bottom: 16px; letter-spacing: -1px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 8px; }

p, ul, ol, blockquote {
  margin-bottom: 16px;
  font-size: 1rem;
}
.subheadline {
  color: #bc9649;
  font-size: 1.2rem;
  font-family: 'EB Garamond', Garamond, serif;
}

blockquote {
  font-family: 'EB Garamond', Garamond, serif;
  font-style: italic;
  background: rgba(251,252,199,0.13);
  border-left: 4px solid #BC9649;
  padding: 16px 24px;
  margin-bottom: 12px;
  color: #322B25;
}

/* FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(127, 97, 43, 0.09);
  padding: 32px 24px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .22s cubic-bezier(.78,-0.34,.52,1.46), box-shadow .18s;
}
.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 30px 0 rgba(127,97,43,0.15);
  z-index: 3;
}
.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: #FFFEDC;
  color: #322B25;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(64, 50, 15,0.08);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-direction: column;
  transition: box-shadow .18s, transform .2s;
  min-width: 0;
  max-width: 520px;
}
.testimonial-card strong {
  color: #BC9649;
  font-weight: bold;
  font-size: 1.1em;
}
.testimonial-card:hover {
  box-shadow: 0 6px 26px #F6F3EE;
  transform: scale(1.01);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION & CTA */
.hero {
  background: linear-gradient(96deg, #FFF6D6 40%, #FFD34C 100%);
  padding: 72px 0 56px 0;
  margin-bottom: 60px;
}
.hero h1 {
  font-size: 2.7rem;
  margin-bottom: 14px;
  color: #231c14;
  letter-spacing: -1.2px;
  line-height: 1.13;
}
.hero .subheadline {
  margin-bottom: 24px;
  display: block;
  font-weight: 500;
  color: #3e3632;
  letter-spacing: .3px;
}
.hero .cta.primary {
  margin-top: 8px;
}

.cta {
  display: inline-block;
  font-size: 1.15rem;
  font-family: 'EB Garamond', Garamond, serif;
  background: #BC9649;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 12px 36px;
  font-weight: 700;
  box-shadow: 0 2px 14px rgba(188,150,73,0.16);
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .16s, transform .13s;
  margin-bottom: 0;
  letter-spacing: .2px;
  text-align: center;
  outline: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: #FFAC33;
  color: #322B25;
  box-shadow: 0 6px 20px 0 #FFD34C;
  transform: scale(1.04);
}

/* BUTTONS & LINK EFFECTS */
button, .button, .cta {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  transition: filter .18s, box-shadow .18s, color .18s, background .2s;
  outline: none;
}
button:focus, .cta:focus {
  outline: 2px solid #FFD34C;
}
a:hover, .mobile-nav a:hover {
  color: #BC9649;
  text-decoration: underline;
}

nav a {
  color: #3E3632;
  font-size: 1rem;
  margin-right: 18px;
  font-family: 'EB Garamond', Garamond, serif;
  font-weight: 600;
  transition: color .18s;
}
nav a:last-child { margin-right: 0; }
nav a.active, nav a[aria-current="page"] {
  color: #BC9649;
}

/* HEADER LAYOUT */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(188,150,73,0.07);
  padding: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 1001;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 12px;
}
header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
header .cta.primary {
  margin-left: 24px;
  min-width: 140px;
}

.mobile-menu-toggle {
  display: none;
  background: #FFD34C;
  color: #231c14;
  border-radius: 50%;
  font-size: 2.1rem;
  padding: 5px 13px;
  margin-left: 15px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px #ffd34c8c;
  transition: background .18s, box-shadow .16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #BC9649;
  color: #fff;
  box-shadow: 0 4px 18px #FFD34C;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(243, 218, 97, 0.98);
  z-index: 2050;
  transform: translateX(100%);
  transition: transform .41s cubic-bezier(.7,.1,.4,1.09);
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: #BC9649;
  color: #fff;
  border-radius: 50%;
  font-size: 2.4rem;
  border: none;
  margin: 24px 32px 10px 0;
  align-self: flex-end;
  cursor: pointer;
  box-shadow: 0 2px 20px #ffd34c44;
  transition: background .2s, color .2s;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFD34C;
  color: #3E3632;
  outline: 2px solid #BC9649;
}

.mobile-nav {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 36px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.4rem;
  font-family: 'EB Garamond', Garamond, serif;
  color: #3E3632;
  font-weight: 600;
  padding: 6px 0 6px 12px;
  border-left: 6px solid transparent;
  border-radius: 2px;
  width: 100%;
  transition: background .18s, color .18s, border-color .15s;
}
.mobile-nav a:active, .mobile-nav a.active {
  color: #BC9649;
  border-left: 6px solid #FFD34C;
}
.mobile-nav a:hover {
  background: #FFFEDC;
  color: #BC9649;
}

/* FOOTER LAYOUT */
footer {
  background: #3E3632;
  color: #fff;
  padding: 36px 0 24px 0;
  margin-top: 40px;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
}
footer nav a {
  color: #FFD34C;
  font-size: 1rem;
  font-weight: 600;
}
footer nav a:hover { color: #BC9649; text-decoration: underline; }
footer p { font-size: 0.97rem; color: #fff;
  opacity: .77; }

/* LISTS WITH ICONS */
.content-wrapper ul li,
.text-section ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 12px;
}
.content-wrapper ul img,
.text-section ul img {
  width: 24px;
  height: 24px;
  margin-right: 6px;
}

/* CONTACT SECTION */
.contact ul li {
  font-size: 1.07rem;
}
.contact a {
  color: #BC9649;
  font-weight: 600;
  text-decoration: underline;
  transition: color .18s;
}
.contact a:hover { color: #FFD34C; }

/* MODAL & OVERLAY for COOKIE CONSENT */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #231c14;
  color: #FFFEDC;
  box-shadow: 0 -2px 18px #322B259f;
  z-index: 3200;
  padding: 28px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  font-size: 1.05rem;
  letter-spacing: .2px;
  animation: cookieIn .44s cubic-bezier(.52,1.8,.44,.92);
  flex-wrap: wrap;
}
@keyframes cookieIn {
  0% { transform: translateY(60px); opacity: 0; }
  90% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner button,
.cookie-banner .cta {
  margin-left: 12px;
  border-radius: 20px;
  padding: 8px 21px;
  font-size: 1rem;
  min-width: 104px;
  font-weight: 700;
  border: none;
  background: #FFD34C;
  color: #3E3632;
  box-shadow: 0 2px 8px #FFD34C33;
  transition: background .16s, color .18s, box-shadow .12s;
  cursor: pointer;
  outline: none;
}
.cookie-banner button.accept {
  background: #51dc1c;
  color: #fff;
}
.cookie-banner button.accept:hover { background: #7bef59; }
.cookie-banner button.reject {
  background: #DD4A48;
  color: #fff;
}
.cookie-banner button.reject:hover { background: #fb6863; }
.cookie-banner button.settings {
  background: #FFD34C;
  color: #3E3632;
}
.cookie-banner button.settings:hover { background: #BC9649; color: #fff; }

.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(44,20,16,.78);
  z-index: 4020;
  justify-content: center;
  align-items: center;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: modalIn .44s cubic-bezier(.7,1.22,.49,1.1);
}
@keyframes modalIn {
  0% { transform: scale(.95); opacity: 0; }
  70% { opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal {
  background: #FFFEDC;
  color: #322B25;
  border-radius: 24px;
  padding: 36px 28px 32px 28px;
  max-width: 390px;
  box-shadow: 0 3px 40px #FFD34C44;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 300px;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #BC9649;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 12px;
  cursor: pointer;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #FFD34C;
  width: 18px;
  height: 18px;
  margin-right: 5px;
}
.cookie-modal .cookie-category-desc {
  font-size: 0.96rem;
  color: #4e4427;
  margin-bottom: 4px;
}
.cookie-modal .button-row {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 15px;
}
.cookie-modal button, .cookie-modal .cta {
  border-radius: 18px;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 600;
}

/* ANIMATIONS & MICROINTERACTIONS */
.card, .testimonial-card, .cta {
  will-change: transform, box-shadow;
}

/* ACCESSIBLE FOCUS STATES */
:focus-visible {
  outline: 2px solid #FFD34C;
  outline-offset: 2px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1060px) {
  .container { max-width: 95vw; }
  .testimonial-card { max-width: 92vw; }
}

@media (max-width: 850px) {
  .container { max-width: 100vw; }
}

@media (max-width: 768px) {
  h1 { font-size: 1.72rem; }
  h2 { font-size: 1.3rem; }
  .container,
  footer .container {
    padding: 0 8px;
  }
  .content-wrapper, .content-grid, .text-image-section, .card-container {
    flex-direction: column !important;
    gap: 18px !important;
    align-items: flex-start;
  }
  .testimonial-card,
  .card {
    min-width: 0;
    max-width: 98vw;
    border-radius: 12px;
  }
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
  }
  .hero {
    padding: 38px 0 33px 0;
    margin-bottom: 36px;
  }
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .cta.primary {
    margin-left: 0;
  }
  .mobile-menu {
    padding: 0;
    min-width: 0;
  }
}
@media (max-width:500px) {
  .cookie-modal {
    padding: 18px 7vw 14px 7vw;
    min-width: 0;
    max-width: 99vw;
  }
  .cookie-banner {
    padding: 18px 6vw;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .mobile-nav { padding: 24px 15px; }
}

/* PRINT STYLES (optional) */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
}

/* === END CSS === */