/* ======================================================
   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 {
  line-height: 1.5;
  font-size: 16px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  font-family: 'Nunito', Arial, Helvetica, sans-serif;
  background: #FDF6F0;
  color: #3b2a17;
  min-height: 100vh;
  /* artistic brush texture effect bg subtle, fallback none */
}
img {
  max-width: 100%;
  display: block;
  border-style: none;
}
ul, ol {
  padding-left: 1.4em;
}
a {
  color: #70543C;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus { color: #a34d34; outline: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}
button { cursor: pointer; }

/* ======================================================
   BRAND COLORS & TYPOGRAPHY
====================================================== */
:root {
  --primary: #70543C;
  --secondary: #DBB892;
  --accent: #FDF6F0;
  --black: #2d1708;
  --white: #fff;
  --danger: #a34d34;
  --creative-1: #ffdf94;
  --creative-2: #ffcbe6;
  --creative-3: #90e7c6;
  --creative-4: #ffe8d3;
  --shadow: 0 4px 20px 0 rgba(112,84,60,0.10);
  --radius-lg: 32px;
  --radius-md: 18px;
  --radius-sm: 8px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', "Georgia", serif;
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -1px;
}
h1 { font-size: 2.6rem; line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: 2rem; line-height: 1.2; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4 { font-size: 1.15rem; }
.subheadline { font-family: "Nunito", Arial, sans-serif; color: #70543C; font-size: 1.25rem; margin-bottom: 18px; line-height: 1.4; }
p, ul, ol, li { font-family: 'Nunito', Arial, sans-serif; color: #3b2a17; font-size: 1rem; line-height: 1.8; margin-bottom: 14px; }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }
strong { font-weight: 700; }

/* Creative artistic handwritten/rounded font accent on display (applies to logo, hero) */
.hero h1, .hero .subheadline {
  font-family: 'Merriweather', Georgia, serif;
  letter-spacing: -0.06em;
  /* artistic font, fallback to slight curve */
}

/* Spacing Utilities */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 769px) {
  .content-wrapper {
    gap: 32px;
  }
}

/* ======================================================
   HEADER & NAVIGATION
====================================================== */
header {
  width: 100%;
  background: var(--accent);
  box-shadow: 0 1px 8px 0 rgba(112,84,60,.06);
}
header .container {
  padding-top: 10px; padding-bottom: 10px;
}
header .content-wrapper {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--primary);
  position: relative;
  padding: 4px 2px;
  border-radius: 4px;
  transition: color 0.25s cubic-bezier(.4,0,.2,1), background 0.2s;
}
header nav a:hover,
header nav a:focus {
  color: #fff;
  background: var(--secondary);
}
.cta-button {
  display: inline-flex;
  align-items: center;
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  font-size: 1.125rem;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 12px 34px;
  box-shadow: 0 2px 10px 0 rgba(112,84,60,0.08);
  border: none;
  outline: none;
  transition: background 0.22s cubic-bezier(.56,0,.32,1), transform 0.15s;
  text-shadow: 0 1px 3px #92796622;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.cta-button:hover,
.cta-button:focus {
  background: var(--secondary);
  color: var(--black);
  transform: scale(1.045);
}
header img {
  max-height: 52px;
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  background: var(--creative-1);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 1.7rem;
  margin-left: 10px;
  border: none;
  color: var(--primary);
  transition: background 0.18s;
  z-index: 1010;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* Hide mobile menu button on desktop */
@media (min-width: 1025px) {
  .mobile-menu-toggle { display: none; }
}
/* Hide header nav on mobile */
@media (max-width: 1024px) {
  header nav, .cta-button { display: none; }
}

/* ======================================================
   MOBILE MENU
====================================================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #FDF6F0;
  box-shadow: 0 8px 48px 0 rgba(112, 84, 60, .36);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(.5,0,.3,1);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: var(--primary);
  background: none;
  border: none;
  padding: 20px 26px 10px 20px;
  position: relative;
  left: 0;
  top: 6px;
  font-weight: 600;
  cursor: pointer;
  z-index: 2;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: var(--danger); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-top: 34px;
  padding-left: 36px;
}
.mobile-nav a {
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--primary);
  padding: 14px 0 14px 0;
  border-radius: var(--radius-md);
  background: none;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--creative-2);
  color: #a34d34;
}
/* Make links bigger for tap targets */
.mobile-nav a {
  min-height: 46px;
  display: flex;
  align-items: center;
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

/* ======================================================
   HERO SECTION
====================================================== */
.hero {
  background: linear-gradient(120deg, var(--creative-1), var(--creative-2), var(--creative-4));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 46px 16px 46px 16px;
  /* subtle artistic shapes - could include decorative SVG as bg with z-index -1 */
  position: relative;
  overflow: hidden;
}
.hero .content-wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}
.hero h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 14px;
}
@media (min-width: 769px) {
  .hero h1 { font-size: 3.1rem; }
  .hero {
    padding: 70px 0;
  }
}

/* ======================================================
   LAYOUT: FEATURE, CARD, FLEX - ARTISTIC STYLE
====================================================== */
.feature-grid, .card-container, .content-grid, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 0 0;
  width: 100%;
}
.feature-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  border: 2px solid var(--secondary);
  max-width: 340px;
  min-width: 220px; 
}
.feature-item img {
  width: 54px; height: 54px;
  margin-bottom: 6px;
  filter: drop-shadow(0 1px 2px #eedcb411);
}
.feature-item h3 {
  font-size: 1.23rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -.5px;
}
@media (max-width: 900px) {
  .feature-grid { flex-direction: column; gap: 20px; }
}

.card-container {
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.16s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(112,84,60,.11), var(--shadow);
  transform: scale(1.017);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 18px;
}

.content-grid {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

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

/* ======================================================
   TESTIMONIALS
====================================================== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 22px;
  box-shadow: 0 4px 16px 0 rgba(112,84,60,0.08);
  border-left: 6px solid var(--creative-3);
  transition: box-shadow 0.18s, border-left 0.13s;
  max-width: 700px;
}
.testimonial-card:hover {
  box-shadow: 0 7px 28px 0 rgba(112,84,60,0.13);
  border-left: 6px solid var(--creative-2);
}
.testimonial-card p {
  color: #2b190e;
  font-size: 1.13rem;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-author {
  color: var(--primary);
  font-family: 'Merriweather', Georgia, serif;
  font-size: 0.98rem;
  font-weight: 600;
  margin-left: auto;
  white-space: nowrap;
}

/* ======================================================
   FOOTER
====================================================== */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 0 0 0 0;
}
footer .container { padding: 0; }
footer .content-wrapper {
  flex-direction: row;
  align-items: flex-start;
  gap: 50px;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 34px 0 24px 0;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 130px;
}
footer nav a {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 7px;
  transition: color 0.15s, text-decoration 0.12s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--creative-1);
  text-decoration: underline wavy 1.5px var(--creative-1);
}
footer .social-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}
footer .social-icons a img {
  width: 28px;
  filter: grayscale(0%) brightness(1) drop-shadow(0 1px 2px #70543c20);
  transition: filter .20s;
}
footer .social-icons a:hover img {
  filter: grayscale(0%) brightness(1.1) drop-shadow(0 3px 7px #ffdf9416);
}
footer .contact-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  max-width: 220px;
  color: var(--accent);
  font-size: .97rem;
}
footer .contact-info img {
  width: 18px; margin-right: 6px; vertical-align: middle;
}
footer img[alt*="logo-mark"] {
  width: 52px; margin-bottom: 14px;
}
@media (max-width: 1100px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  footer .content-wrapper {
    padding: 16px 0 12px 0;
    gap: 17px;
  }
  footer .contact-info { font-size: 0.93rem; }
  footer img[alt*="logo-mark"] { margin-bottom: 8px; }
}
/* ======================================================
   CONTACT INFO NOTE
====================================================== */
.contact-info-note p {
  background: var(--creative-1);
  color: var(--black);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-top: 22px; margin-bottom: 0;
  font-size: 1.08rem;
}

/* ======================================================
   SECTION & SPACING
====================================================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
@media (max-width: 700px) {
  .section { padding: 24px 6px; }
}

/* ======================================================
   BUTTONS, LINKS, FORMS
====================================================== */
button, .cta-button {
  outline: none;
  border: none;
}
.cta-button:active { transform: scale(0.98); }

/* General Button */
.btn, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--primary);
  border-radius: var(--radius-sm);
  padding: 11px 28px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s, transform 0.17s;
  line-height: 1.3;
  cursor: pointer;
  box-shadow: 0 1px 6px 0 rgba(112,84,60,0.07);
  margin-right: 12px;
}
.btn:hover, .btn:focus, .button:hover, .button:focus { background: var(--primary); color: #fff; transform: scale(1.035); }

/* Artistic Icon Buttons */
.btn-icon {
  display: inline-flex;
  align-items: center;
  background: var(--creative-2);
  color: var(--primary);
  border-radius: 50%;
  padding: 10px;
  font-size: 1.3rem;
  border: none;
  transition: background 0.18s;
}
.btn-icon:hover, .btn-icon:focus { background: var(--creative-1); }

/* ======================================================
   COOKIE CONSENT BANNER + MODAL
====================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffbe5;
  border-top: 3px solid var(--secondary);
  box-shadow: 0 -3px 23px 0 rgba(112,84,60,0.13);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 20px 18px 22px;
  font-size: 1.02rem;
  animation: slideup 0.8s cubic-bezier(.11,.71,.54,.98);
}
@keyframes slideup {
  from { transform: translateY(100%); opacity: 0 }
  to   { transform: none; opacity: 1 }
}
.cookie-banner p {
  color: var(--primary);
}
.cookie-banner-actions {
  display: flex;
  gap: 14px;
  margin-top: 2px;
}
.cookie-btn {
  padding: 10px 26px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: background 0.17s, color 0.17s;
  border: none;
  outline: none;
  cursor: pointer;
}
.cookie-btn.accept {
  background: var(--primary);
  color: #fff;
}
.cookie-btn.accept:hover { background: var(--secondary); color: var(--primary); }
.cookie-btn.reject {
  background: var(--creative-3);
  color: var(--primary);
}
.cookie-btn.reject:hover { background: var(--danger); color: #fff; }
.cookie-btn.settings {
  background: #fff;
  color: var(--primary);
  border: 1.7px solid var(--secondary);
}
.cookie-btn.settings:hover { background: var(--secondary); color: var(--primary); }

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(70,38,13,0.23);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  animation: fadein 0.3s cubic-bezier(.3,.99,.21,1.01);
}
@keyframes fadein {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal-content {
  background: #fffbe5;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 38px 0 rgba(112,84,60,0.17);
  padding: 36px 32px 30px 32px;
  min-width: 310px;
  max-width: 98vw;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-content h2 {
  margin-bottom: 4px;
  color: var(--primary);
}
.cookie-modal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-modal-list label {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 1rem;
}
.cookie-modal-list input[type=checkbox] {
  accent-color: var(--primary);
  width: 18px; height: 18px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 16px;
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 20px;
  color: var(--primary);
  font-size: 2rem;
  background: none; border: none;
  cursor: pointer;
}
@media (max-width: 600px) {
  .cookie-modal-content {
    min-width: 92vw;
    padding: 20px 6vw 22px 6vw;
  }
}

/* ======================================================
   RESPONSIVENESS
====================================================== */
/* Small devices (mobile-first) */
main, .container { width: 100%; }
@media (max-width: 800px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.33rem; }
  .feature-item, .card, .testimonial-card {
    max-width: 99vw;
    padding-left: 10px; padding-right: 10px;
  }
  .footer nav, .footer .contact-info, .footer .social-icons {
    min-width: 0;
    max-width: 100vw;
  }
}
@media (max-width: 600px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item, .testimonial-card, .section, .card {
    padding-left: 8px; padding-right: 8px;
    min-width: 0; max-width: 100vw;
  }
}

/* ====================================================
   ARTISTIC/CREATIVE DECORATIVE ACCENTS
==================================================== */
/* Artistic border strokes */
.feature-item, .card, .testimonial-card {
  position: relative;
  overflow: hidden;
}
.feature-item::after, .card::after, .testimonial-card::after {
  content: '';
  position: absolute;
  left: -22px; bottom: -22px;
  width: 80px; height: 80px;
  background: rgba(255,219,146,0.29);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.feature-item::before {
  content: '';
  position: absolute;
  top: -15px; right: -15px;
  width: 55px; height: 55px;
  background: rgba(144,231,198,0.15);
  border-radius: 50%;
  z-index: 0;
}
.feature-item > * { position: relative; z-index: 1; }

/* Artistic lines on cta-button */
.cta-button::after {
  content: '';
  display: block;
  position: absolute;
  right: 18px; top: 50%;
  width: 12px; height: 2px;
  background: var(--creative-2);
  border-radius: 1px;
  transform: translateY(-50%) rotate(-5deg);
}

/* ======================================================
   ACCESSIBLE/FOCUS OUTLINE
====================================================== */
a:focus, .cta-button:focus, button:focus {
  outline: 2.5px solid var(--creative-3);
  outline-offset: 3px;
  z-index: 3;
}

/* ======================================================
   LISTS, UL, OL
====================================================== */
ul, ol {
  font-size: 1rem;
  margin-bottom: 16px; margin-top: 4px;
}
ul li, ol li {
  margin-bottom: 7px;
  color: #3b2a17;
  font-size: 1rem;
  line-height: 1.7;
  padding-left: 2px;
}
ul li:last-child, ol li:last-child { margin-bottom: 0; }
ul li::marker, ol li::marker {
  color: var(--primary);
}

/* ======================================================
   MISC/HELPERS
====================================================== */
.hide { display: none; }
.show { display: block; }

/* Spacing and alignment patterns from requirements */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

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