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

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F6E5B3;
  color: #3A2411;
}
ul, ol {
  list-style: none;
}
a {
  background: transparent;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
}

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

:root {
  --primary: #7B3F00;
  --secondary: #F6E5B3;
  --accent: #A03000;
  --brand-brown: #7B3F00;
  --brand-cream: #F6E5B3;
  --brand-accent: #A03000;
  --off-white: #FFFFFF;
  --border-light: #E7D1A8;
  --deep-brown: #4B2900;
  --soft-yellow: #FFEFC6;
  --card-bg: #FFFFFF;
  --font-display: 'Lora', serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --shadow-soft: 0 2px 12px 0 rgba(75,41,0,0.07);
  --radius-card: 18px;
  --radius-btn: 8px;
  --transition: 0.2s cubic-bezier(.55,.2,.1,1);
}

body {
  font-family: var(--font-body);
  background: var(--secondary);
  color: var(--primary);
  font-size: 16px;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-brown);
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 18px;
  line-height: 1.15;
  text-shadow: 0 2px 0 #fff4e5, 0 5px 15px #c29b6915;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1.2;
  text-shadow: 0 1px 0 #fff7ed, 0 2px 8px #efd7b4aa;
}
h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.18rem;
  margin-bottom: 7px;
}
p, ul li, ol li {
  font-size: 1rem;
  color: #3A2411;
  letter-spacing: 0;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
  color: var(--deep-brown);
  letter-spacing: 0.01em;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 12px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* Feature/List Styles */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.feature-grid li {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 22px;
  min-width: 230px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.feature-grid li:hover {
  box-shadow: 0 8px 34px 0 #c29b6942;
  transform: translateY(-2px) scale(1.03);
  border-color: var(--accent);
}
.feature-grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
  filter: sepia(0.6) hue-rotate(-10deg) contrast(0.95) brightness(1.15);
}

/* Cards, Testimonials, Lists */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  padding: 28px 22px;
  min-width: 220px;
  max-width: 360px;
  border: 1.5px solid var(--border-light);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 34px 0 #99591a38;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

ul, ol {
  padding-left: 1em;
}
ul li, ol li {
  margin-bottom: 8px;
  position: relative;
  font-size: 1.07em;
}
ul li::before {
  content: '\2022';
  color: var(--accent);
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  font-size: 1.1em;
}

/* Testimonial Styles */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-card);
  border: 1.5px solid var(--border-light);
  box-shadow: 0 2px 18px 0 #c29b6942;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  min-width: 230px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  color: #342008;
  font-family: var(--font-display);
  position: relative;
  transition: box-shadow var(--transition);
}
.testimonial-card p {
  font-size: 1.11em;
  color: #422b0f;
  margin-bottom: 0.7em;
  line-height: 1.6;
}
.testimonial-card strong {
  font-family: var(--font-body);
  color: var(--accent);
  font-weight: 700;
  font-size: 1em;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 3.3rem;
  color: #decab2;
  opacity: 0.4;
  position: absolute;
  left: 18px;
  top: 10px;
}
/* Extra accessibility – higher contrast for testimonial text on light bg */
@media (max-width:600px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-card {
    padding: 16px 15px;
  }
}

/* Feature Items for any usage */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
}

/* Responsive Content Grids */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .feature-grid, .card-container, .content-grid {
    gap: 12px;
  }
}

/* HEADER/NAVIGATION STYLES */
header {
  width: 100%;
  background: var(--primary);
  padding: 0 0;
  box-shadow: 0 2px 18px 0 #c29b6921;
  position: sticky;
  top: 0;
  z-index: 30;
}
header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding-left: 3vw;
  padding-right: 3vw;
}
header a img {
  height: 48px;
  width: auto;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
header nav a {
  color: var(--secondary);
  font-family: var(--font-display);
  font-size: 1.11em;
  text-shadow: 0 2px #4B29003A;
  padding: 2px 0 0 0;
  border-bottom: 2.5px solid transparent;
  transition: color var(--transition), border-bottom var(--transition);
  font-weight: 700;
  position: relative;
}
header nav a.cta {
  background: var(--accent);
  color: #fff;
  padding: 8px 22px 9px 22px;
  border-radius: var(--radius-btn);
  font-size: 1.03em;
  border: none;
  box-shadow: 0 2px 9px 0 #600f0017;
  letter-spacing: 0.02em;
  border-bottom: none;
  transition: background var(--transition), transform var(--transition);
}
header nav a.cta:hover,
header nav a.cta:focus {
  background: #A03000;
  color: #FFF5EC;
  transform: scale(1.03);
}
header nav a:hover, header nav a:focus {
  color: var(--card-bg);
  border-bottom: 2.5px solid var(--accent);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--secondary);
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
  margin-left: 18px;
  transition: color var(--transition), transform var(--transition);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: var(--accent);
  transform: scale(1.1);
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE BURGER MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 88vw;
  max-width: 340px;
  background: var(--off-white);
  box-shadow: -3px 0 100px 0 #4519071a;
  z-index: 100;
  transform: translateX(110%);
  transition: transform 0.34s cubic-bezier(0.66,0.07,0.19,0.91);
  display: flex;
  flex-direction: column;
  padding: 32px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.1em;
  position: absolute;
  top: 12px;
  right: 20px;
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
  z-index: 120;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--accent);
  transform: scale(1.1) rotate(3deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 21px;
  margin-top: 38px;
  padding: 0 18px;
}
.mobile-nav a {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.17em;
  padding: 9px 0;
  border-bottom: 1px solid #f6e5b36e;
  transition: color var(--transition), background var(--transition);
  border-radius: var(--radius-btn);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--soft-yellow);
  color: var(--accent);
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu.open { display: none !important; }
}

/* MAIN LAYOUT SECTIONS */
main {
  padding-bottom: 80px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
section:last-child {
  margin-bottom: 0;
}

/* BUTTON STYLES */
.cta, .btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: bold;
  background: var(--accent);
  color: #fff!important;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-size: 1.11em;
  text-align: center;
  border: none;
  box-shadow: 0 2px 9px 0 #600f0017;
  cursor: pointer;
  letter-spacing: 0.02em;
  text-shadow: 0 1px #5004010d;
  margin-top: 10px;
  margin-bottom: 6px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), color var(--transition);
}
.cta:hover, .cta:focus, .btn:hover, .btn:focus {
  background: #C14525;
  color: #FFF5EC;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 28px 0 #ae4e1428;
}

/* FOOTER STYLES */
footer {
  background: var(--primary);
  color: var(--secondary);
  font-size: 0.99em;
  text-align: center;
  padding: 29px 17px 15px 17px;
  margin-top: 40px;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  box-shadow: 0 -2px 32px #7b3f0014;
}
footer nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 7px;
}
footer nav a {
  color: var(--secondary);
  opacity: 0.98;
  padding: 2px 8px;
  border-bottom: 1.5px solid transparent;
  font-family: var(--font-display);
  font-size: 1em;
  transition: color var(--transition), border-bottom var(--transition);
}
footer nav a:hover,footer nav a:focus {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}
footer p {
  margin: 6px 0 0 0;
  font-size: 0.97em;
  letter-spacing: 0.01em;
  color: #fbe9cc;
  font-family: var(--font-display);
}

/* RETRO VINTAGE SPECIALS: Fonts/Patterns/Decor */
body {
  background: 
    repeating-linear-gradient(135deg, #f7ecd8, #f7ecd8 32px, #f6e5b3 32px, #f6e5b3 64px),
    url('data:image/svg+xml;utf8,<svg fill="%23f7ecd8" fill-opacity="0.49" viewBox="0 0 8 8" width="8" height="8" xmlns="http://www.w3.org/2000/svg"><circle cx="4" cy="4" r="1.2"/></svg>');
  background-size:
    128px 128px,
    16px 16px;
  background-repeat: repeat;
}
section {
  border-radius: 14px;
  border: 1.5px dashed #e9c98c;
  background: linear-gradient(100deg,#fffbe7 88%,#ffecc1 100%);
  box-shadow: 0 3px 48px 0 #eac1682c;
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  .container, section, .section {
    padding: 18px 5px;
  }
}

/* RETRO: divider pattern under h2 */
h2::after {
  content: '';
  display: block;
  margin: 7px auto 0 auto;
  width: 48px;
  height: 4px;
  background: repeating-linear-gradient(90deg, #C14525 0 8px, #e7d1a8 8px 16px);
  border-radius: 2px;
  opacity: 0.38;
}

/* Input fields for forms (newsletter, future-proof) */
input[type="text"], input[type="email"], textarea, select {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-btn);
  font-size: 1em;
  font-family: var(--font-body);
  background: #FFF;
  padding: 11px 12px;
  margin-bottom: 10px;
  width: 100%;
  box-shadow: 0 1px 7px #decab21a inset;
  transition: border var(--transition), box-shadow var(--transition);
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px #c1452549;
}
@media (max-width:660px) {
  h1,
  .content-wrapper h1 { font-size: 2.01rem!important; }
  h2 { font-size: 1.33rem!important; }
}

/* Microinteractions: subtle transition for all elements */
*, *:before, *:after {
  box-sizing: inherit;
  transition: background 0.17s, border-color 0.18s, box-shadow 0.13s, color 0.18s, transform 0.15s cubic-bezier(.38,.89,.67,1.5);
}

/* Links in content */
.text-section a {
  color: var(--accent);
  border-bottom: 1px solid #c14525;
  padding-bottom: 2px;
  font-weight: 700;
}
.text-section a:hover {
  color: #C14525;
  border-color: var(--primary);
}

/* Responsive: Mobile tweaks */
@media (max-width: 600px) {
  header {
    padding: 6px 6vw 0 6vw;
    min-height: 49px;
  }
  header a img {
    height: 37px;
  }
  footer {
    font-size: 0.94em;
    padding: 15px 3px;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe7;
  border-top: 2px solid #e4bc7e;
  box-shadow: 0 -4px 30px #c29b6917;
  padding: 22px 18px 20px 18px;
  display: flex;
  flex-direction: row;
  gap: 19px;
  align-items: center;
  justify-content: center;
  z-index: 500;
  font-family: var(--font-body);
  font-size: 1.1em;
  animation: cookieIn 0.45s cubic-bezier(.6,1.3,.44,1) 1;
  opacity: 1;
  transition: bottom 0.31s var(--transition), opacity 0.21s;
}
@keyframes cookieIn {
  from { bottom:-60px; opacity: 0; }
  to   { bottom:0; opacity: 1; }
}
.cookie-banner.hide {
  opacity:0;
  pointer-events: none;
  bottom: -100px;
}
.cookie-banner .cookie-text {
  flex: 2 1 320px;
  color: #3a270c;
  margin-bottom: 0;
}
.cookie-banner .cookie-btn, .cookie-banner button {
  min-width: 122px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-weight: bold;
  padding: 11px 19px;
  font-size: 1em;
  margin-left: 7px;
  margin-right: 7px;
  box-shadow: 0 2px 11px #c1452521;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.cookie-banner .cookie-btn.accept {
  background: var(--accent);
}
.cookie-banner .cookie-btn.reject {
  background: var(--primary);
}
.cookie-banner .cookie-btn.settings {
  background: #debc71;
  color: #7B3F00;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #C14525;
  color: #fffbe7;
  transform: translateY(-1px) scale(1.01);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    text-align: center;
    padding: 13px 5px;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  background: rgba(75, 41, 0, 0.47);
  position: fixed;
  inset: 0;
  z-index: 1111;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalIn 0.24s cubic-bezier(.6,1.3,.44,1) 1;
}
@keyframes modalIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fffbe7;
  border-radius: 13px;
  box-shadow: 0 8px 48px 0 #c29b6949;
  padding: 34px 23px 24px 23px;
  max-width: 390px;
  width: 92vw;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: var(--font-body);
  border: 1px solid #e4bc7e;
  z-index: 1200;
}
.cookie-modal h3 {
  font-family: var(--font-display);
  font-size: 1.25em;
  margin-bottom: 9px;
  color: var(--accent);
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
  font-size: 1em;
}
.cookie-modal .cookie-category label {
  font-weight: 600;
  color: #6f4708;
}
.cookie-modal .cookie-toggle {
  width: 38px;
  height: 22px;
  background: #ffecc1;
  border-radius: 11px;
  position: relative;
  cursor: pointer;
  margin-left: 12px;
  border: 1.5px solid #decab2;
  transition: background 0.19s, border 0.17s;
}
.cookie-modal .cookie-toggle[data-checked="true"] {
  background: var(--accent);
  border-color: var(--accent);
}
.cookie-modal .cookie-toggle-inner {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s cubic-bezier(.47,.83,.57,1.3);
  box-shadow: 0 1px 6px #c1452531;
}
.cookie-modal .cookie-toggle[data-checked="true"] .cookie-toggle-inner {
  transform: translateX(16px);
}
.cookie-modal .cookie-category .cookie-description {
  font-size: 0.94em;
  opacity: 0.68;
  margin-left: 9px;
}
.cookie-modal .cookie-action-row {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .cookie-action-row button {
  min-width: 98px;
  font-family: var(--font-display);
  font-size: 1em;
  font-weight: bold;
  padding: 10px 12px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
}
.cookie-modal .save {
  background: var(--accent);
  color: #fff;
}
.cookie-modal .cancel {
  background: #FFF;
  color: var(--primary);
  border: 1.5px solid var(--accent);
}
.cookie-modal .save:hover, .cookie-modal .save:focus {
  background: var(--primary);
}
.cookie-modal .cancel:hover, .cookie-modal .cancel:focus {
  background: var(--accent);
  color: #fff;
}

/* Accessibility: focus outlines */
a:focus, button:focus, .cta:focus, .btn:focus {
  outline: 2px dashed var(--accent) !important;
  outline-offset: 2px;
}

/* Misc Spacing Rules */
section + section {
  margin-top: 0;
}
h2 {
  margin-top: 1.5em;
}
.card, .testimonial-card, .feature-grid li {
  margin-bottom: 20px;
}
.content-grid > * {
  margin-bottom: 20px;
}

/**** END OF STYLE FILE ****/