/* ==========================
   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.6;
  background-color: #FAF4E7;
  color: #1D4F39;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}
*::-webkit-input-placeholder { color: #7A7161; opacity:1; }
*:-ms-input-placeholder { color: #7A7161; opacity:1; }
*::-ms-input-placeholder { color: #7A7161; opacity:1; }
*::placeholder { color: #7A7161; opacity:1; }

/* ==========================
   VINTAGE RETRO THEME VARS
========================== */
:root {
  --primary: #1D4F39;
  --secondary: #A8C97F;
  --accent: #FAF4E7;
  --deep-brown: #764c26;
  --retro-orange: #DFB377;
  --retro-pink: #F6D5C6;
  --vintage-yellow: #F9C846;
  --vintage-shadow: rgba(61, 35, 6, 0.14);
  --cta-bg: #C4632A;
}

/* ====================
   BASE TYPOGRAPHY
==================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: var(--primary);
  background-color: var(--accent);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.6rem;
  color: var(--deep-brown);
  text-shadow: 1px 2px 0 var(--retro-orange);
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  color: var(--primary);
  background: var(--vintage-yellow);
  display: inline-block;
  padding: 0 18px 0 12px;
  border-radius: 15px 50px 30px 8px/10px 10px 25px 60px;
  box-shadow: 2px 3px 0 var(--retro-orange), 0 2px 10px var(--vintage-shadow);
}
h3 {
  font-size: 1.2rem;
  color: var(--deep-brown);
}
h4, h5, h6 {
  font-size: 1rem;
  color: var(--primary);
}
p, ul li, ol li {
  font-size: 1rem;
  line-height: 1.75;
  color: #3a2d16;
  margin-bottom: 12px;
  font-family: 'Open Sans', Arial, sans-serif;
}
strong {
  font-weight: 700;
}
blockquote {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1em;
  background: var(--retro-pink);
  border-left: 5px solid var(--retro-orange);
  padding: 20px 24px;
  margin: 24px 0;
  color: #32210F;
  border-radius: 20px 8px 20px 8px;
}

/* ===========================
   CONTAINER & LAYOUT SYSTEM
=========================== */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff8ed;
  border-radius: 18px 28px 8px 18px;
  box-shadow: 0 2px 8px var(--vintage-shadow);
  padding: 32px 24px;
  border: 2px solid var(--retro-orange);
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: 0 6px 24px var(--vintage-shadow);
  transform: translateY(-4px) scale(1.02);
}

.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;
  margin-bottom: 20px;
  background: #f8f2dc;
  border-radius: 18px 8px 18px 28px;
  box-shadow: 0 2px 12px var(--vintage-shadow);
  border: 2px solid var(--vintage-yellow);
}
.testimonial-card p {
  font-size: 1.05rem;
  font-style: italic;
  color: #231B0F;
  margin-bottom: 0;
}
.testimonial-card strong {
  color: var(--primary);
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #92563a;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-summary {
  margin-top: 14px;
  background: var(--retro-pink);
  border-radius: 16px;
  padding: 12px 20px;
  font-size: 1.05rem;
  color: var(--deep-brown);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px var(--vintage-shadow);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff8ed;
  border-radius: 18px 30px 12px 10px;
  padding: 28px 24px;
  border: 1.5px solid var(--secondary);
  box-shadow: 0 1px 8px var(--vintage-shadow);
  margin-bottom: 20px;
}
.feature-item h3 {
  margin: 0 0 6px 0;
}

/* ===================
   HEADER & NAV
==================== */
header {
  width: 100%;
  background: var(--secondary);
  box-shadow: 0 2px 12px var(--vintage-shadow);
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}
header nav > a img {
  height: 42px;
}
header nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
header nav ul li a {
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.04rem;
  padding: 7px 18px;
  border-radius: 10px 25px 10px 18px;
  transition: background .2s, box-shadow .2s, color .2s;
}
header nav ul li a:hover, 
header nav ul li a:focus {
  background: var(--retro-orange);
  color: var(--deep-brown);
  box-shadow: 0 2px 6px var(--vintage-shadow);
}
header .cta.primary {
  padding: 11px 26px;
  font-family: 'Montserrat', serif;
  font-weight: 900;
  letter-spacing: .5px;
  background: var(--retro-orange);
  color: #4B2A12;
  border-radius: 25px 10px 25px 20px;
  font-size: 1.1rem;
  box-shadow: 0 2px 12px var(--vintage-shadow);
  transition: background .22s, color .22s, box-shadow .22s;
  border: 2px solid var(--deep-brown);
  margin-left: 18px;
}
header .cta.primary:hover, 
header .cta.primary:focus {
  background: var(--vintage-yellow);
  color: var(--deep-brown);
  box-shadow: 0 7px 28px var(--vintage-shadow);
}

/* ===============
   HERO SECTION
================ */
.hero {
  background: repeating-linear-gradient(-24deg, #FAF4E7, #FAF4E7 42px, #EAE1C8 70px, #EAE1C8 90px);
  border-bottom: 5px solid var(--retro-orange);
  padding-top: 36px;
  padding-bottom: 32px;
  min-height: 220px;
}
.hero h1 {
  margin-bottom: 12px;
  font-size: 2.4rem;
  text-shadow: 1px 2px 0 #DFB377;
}
.hero p {
  font-size: 1.17rem;
  color: #5f4724;
  margin-bottom: 16px;
}

/* ===============
   FEATURES
================ */
.features {
  background: #fff8ed;
  border-top: 4px dashed var(--deep-brown);
  border-bottom: 4px dotted var(--retro-orange);
}
.features .content-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features .content-wrapper ul li {
  flex: 1 1 230px;
  min-width: 230px;
  background: var(--retro-pink);
  border-radius: 18px 28px 12px 16px;
  box-shadow: 0 1px 8px var(--vintage-shadow);
  border: 2px solid var(--secondary);
  padding: 22px 18px;
  margin-bottom: 20px;
  transition: box-shadow .2s, transform .2s;
}
.features .content-wrapper ul li:hover {
  box-shadow: 0 5px 24px var(--vintage-shadow);
  transform: scale(1.025);
}
.features .content-wrapper ul li img {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
}
.features .content-wrapper ul li h3 {
  margin-bottom: 6px;
  font-size: 1.06rem;
}

/* ===============
   CTA SECTION
================ */
.cta {
  background: var(--vintage-yellow);
  border-radius: 28px 8px 28px 12px;
  text-align: center;
  box-shadow: 0 2px 12px var(--vintage-shadow);
  margin-bottom: 48px;
  padding-top: 44px;
  padding-bottom: 44px;
}
.cta h2 {
  background: none;
  font-size: 1.95rem;
  color: var(--deep-brown);
  box-shadow: none;
  margin-bottom: 10px;
}
.cta p {
  font-size: 1.09rem;
  margin-bottom: 24px;
}
.cta.primary, .cta .primary {
  border: none;
  background: var(--cta-bg);
  color: #fffde8;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 1.13rem;
  border-radius: 23px 9px 23px 19px;
  padding: 13px 34px;
  margin-top: 10px;
  box-shadow: 0 2px 14px var(--vintage-shadow);
  transition: background .2s, color .2s, transform .2s;
  cursor: pointer;
  letter-spacing: 1.3px;
}
.cta.primary:hover, .cta .primary:hover, .cta.primary:focus, .cta .primary:focus {
  background: var(--deep-brown);
  color: var(--vintage-yellow);
  transform: scale(1.05);
}

/* ===============
   FOOTER STYLES
================ */
footer {
  background: var(--deep-brown);
  color: var(--accent);
  padding: 36px 0 20px 0;
  border-top: 7px solid var(--retro-orange);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav ul li a {
  color: var(--vintage-yellow);
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Montserrat',sans-serif;
  transition: color .2s;
}
.footer-nav ul li a:hover {
  color: var(--retro-orange);
}
.brand-contact {
  font-size: 0.95rem;
  color: #f7e7b6;
  font-family: 'Open Sans',Arial,sans-serif;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.brand-contact img {
  width: 54px;
  height: auto;
}
.brand-contact a {
  color: #e3c37b;
  text-decoration: underline;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  border-radius: 8px 18px 10px 26px;
  box-shadow: 0 2px 8px var(--vintage-shadow);
  background: #fff8ed;
  padding: 4px;
  transition: box-shadow .18s, background .18s;
}
.footer-social a:hover img {
  box-shadow: 0 7px 16px var(--retro-orange);
  background: var(--vintage-yellow);
}

/* Legacy/Legal pages */
.legal h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--deep-brown);
  text-shadow: 0px 2px 0 var(--retro-orange);
}
.legal h2 {
  font-size: 1.18rem;
  background: none;
  box-shadow: none;
  color: var(--primary);
}
.legal ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 12px;
}
.legal ol {
  list-style: decimal inside;
  margin-left: 22px;
  margin-bottom: 14px;
}

/* ================================
     BLOG, ARTICLES, NEWSLETTER
================================ */
.blog-list .article-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.blog-list .article-cards article {
  background: #fff8ed;
  border-radius: 16px 10px 30px 22px;
  padding: 28px 22px;
  box-shadow: 0 1px 6px var(--vintage-shadow);
  border: 2px solid var(--retro-orange);
  flex: 1 1 320px;
  min-width: 230px;
  transition: box-shadow .2s, transform .2s;
}
.blog-list .article-cards article:hover {
  box-shadow: 0 6px 25px var(--vintage-shadow);
  transform: translateY(-5px) scale(1.019);
}
.blog-list .article-cards h3 {
  margin-bottom: 8px;
  color: var(--deep-brown);
}
.blog-list .article-categories {
  font-size: 0.96rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.blog-list .article-categories a {
  color: var(--deep-brown);
  font-weight: 700;
  padding:2px 8px;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.blog-list .article-categories a:hover {
  background: var(--retro-orange);
  color: var(--deep-brown);
}
.featured-articles h3 {
  margin-bottom: 5px;
  color: var(--primary);
}
.featured-articles ul li a {
  color: var(--deep-brown);
  background: var(--vintage-yellow);
  text-decoration: underline;
  border-radius: 7px;
  padding: 2.5px 7px;
  margin-bottom: 3px;
  display: inline-block;
  transition: background .15s, color .15s;
}
.featured-articles ul li a:hover {
  background: var(--retro-orange);
  color: #422800;
}

.newsletter form {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 8px;
}
.newsletter input[type="email"] {
  padding: 10px 16px;
  font-size: 1.08rem;
  border-radius: 18px 7px 18px 13px;
  border: 1.5px solid var(--retro-orange);
  margin-right: 8px;
  background: #fff8ed;
  transition: box-shadow .16s, border-color .16s;
  width: 225px;
  max-width: 100%;
}
.newsletter input[type="email"]:focus {
  border-color: var(--primary);
  box-shadow: 0 2px 10px var(--vintage-shadow);
}
.newsletter button[type="submit"] {
  background: var(--deep-brown);
  color: var(--accent);
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 16px 7px 16px 10px;
  font-size: 1.08rem;
  cursor: pointer;
  border: 2px solid var(--retro-orange);
  transition: background .2s, color .2s;
}
.newsletter button[type="submit"]:hover {
  background: var(--retro-orange);
  color: var(--deep-brown);
}

/* =========================
   SUCCESS STORIES & STATS
========================= */
.story-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.story-cards > div {
  flex: 1 1 260px;
  min-width: 180px;
  border-radius: 22px 8px 24px 30px;
  background: #fff8ed;
  box-shadow: 0 1px 8px var(--vintage-shadow);
  border: 2px solid var(--secondary);
  padding: 22px 18px;
}
.story-cards strong {
  display: block;
  margin-bottom: 5px;
  color: var(--deep-brown);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.stats-grid > div {
  flex: 1 1 200px;
  min-width: 130px;
  background: var(--retro-pink);
  border: 2px solid var(--vintage-yellow);
  border-radius: 18px 12px 30px 7px;
  box-shadow: 0 1px 8px var(--vintage-shadow);
  text-align: center;
  padding: 20px 8px 14px 8px;
  margin-bottom: 15px;
}
.stats-grid span {
  display: block;
  font-family: 'Montserrat', serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--deep-brown);
  margin-bottom: 7px;
}

.milestones ul {
  list-style: inside disc;
  color: var(--primary);
  margin-left: 4px;
}

/* ==========================
   CONTACT DETAILS/OFFICE
========================== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--retro-pink);
  border-radius: 10px 20px 8px 22px;
  padding: 8px 16px;
  font-size:1rem;
  color: var(--primary);
  box-shadow: 0 1px 6px var(--vintage-shadow);
}
.contact-details img {
  width: 26px;
  height: 26px;
}
.office-hours {
  background: #fff8ed;
  padding: 18px 14px;
  border-radius: 8px 18px 18px 8px;
  margin-bottom: 16px;
  box-shadow: 0 1px 6px var(--vintage-shadow);
  border:1.5px solid var(--retro-orange);
}
.office-hours h3 {
  font-size:1.05rem;
  color: var(--deep-brown);
  margin-bottom: 7px;
}

/* ===============================
   MOBILE NAVIGATION HAMBURGER
================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 18px;
  z-index: 120;
  width: 48px;
  height: 48px;
  background: var(--deep-brown);
  color: #fff7ed;
  font-size: 2.1rem;
  border-radius: 14px 26px 8px 14px;
  border: 2px solid var(--retro-orange);
  box-shadow: 0 2px 12px var(--vintage-shadow);
  align-items: center;
  justify-content: center;
  transition: box-shadow .2s, background .2s, color .2s;
  cursor: pointer;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--retro-orange);
  color: var(--deep-brown);
  box-shadow: 0 7px 28px var(--vintage-shadow);
}
.mobile-menu {
  position: fixed;
  z-index: 1100;
  top: 0; left: 0; bottom: 0; right: 0;
  background: var(--deep-brown);
  color: var(--vintage-yellow);
  transform: translateX(100vw);
  transition: transform .33s cubic-bezier(0.87,0,0.13,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 48px 36px 18px 36px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-left: auto;
  font-size: 2.3rem;
  background: none;
  color: var(--vintage-yellow);
  border: none;
  cursor: pointer;
  margin-bottom: 18px;
  border-radius: 14px 26px 6px 20px;
  padding: 3px 12px;
  transition: background .2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--retro-orange);
  color: var(--deep-brown);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', serif;
  font-size: 1.14rem;
  padding: 11px 12px 11px 22px;
  border-radius: 9px 22px 8px 14px;
  color: var(--vintage-yellow);
  transition: background .23s, color .23s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--retro-orange);
  color: var(--deep-brown);
}

/* ================
   COOKIE BANNER
================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 3000;
  background: #FAF4E7;
  box-shadow: 0 -1px 16px var(--vintage-shadow);
  border-top: 4px solid var(--retro-orange);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 23px 2vw 20px 2vw;
  font-size: 1.03rem;
  font-family: 'Open Sans', Arial, sans-serif;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .33s, transform .33s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  visibility: hidden;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  background: var(--deep-brown);
  color: var(--vintage-yellow);
  font-size: 1rem;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 17px 6px 17px 7px;
  margin: 0;
  border: 2px solid var(--retro-orange);
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .2s;
}
.cookie-banner button.accept {
  background: var(--secondary);
  color: var(--deep-brown);
}
.cookie-banner button.settings {
  background: var(--retro-orange);
  color: var(--deep-brown);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--deep-brown);
  color: var(--vintage-yellow);
  box-shadow: 0 2px 10px var(--vintage-shadow);
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  z-index: 4000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(33,22,11,0.36);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: opacity .22s;
}
.cookie-modal.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff8ed;
  padding: 42px 32px 24px;
  border-radius: 20px 30px 8px 25px;
  box-shadow: 0 8px 32px var(--vintage-shadow);
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.26rem;
  color: var(--deep-brown);
  margin-bottom: 14px;
}
.cookie-modal-content .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 9px;
  border-radius: 12px;
  background: var(--retro-pink);
}
.cookie-category input[type='checkbox'] {
  width: 20px; height: 20px;
  margin-right: 0;
  accent-color: var(--retro-orange);
}
.cookie-category.essential input[type='checkbox'] {
  accent-color: #7c827a;
}
.cookie-category .category-label {
  font-weight: 600;
  color: var(--deep-brown);
  font-family: 'Montserrat',sans-serif;
}
.cookie-modal-content .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 6px;
}
.cookie-modal-content button {
  background: var(--deep-brown);
  color: var(--vintage-yellow);
  font-size: 1rem;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 17px 6px 17px 7px;
  margin: 0;
  border: 2px solid var(--retro-orange);
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .2s;
}
.cookie-modal-content button.save {
  background: var(--secondary);
  color: var(--deep-brown);
}
.cookie-modal-content button.cancel {
  background: var(--retro-orange);
  color: var(--deep-brown);
}
.cookie-modal-content button.close {
  position: absolute;
  top: 13px; right: 15px;
  background: transparent;
  color: var(--deep-brown);
  border: none;
  padding: 2px 8px;
  font-size: 1.7rem;
  border-radius: 6px 18px 11px 14px;
  cursor: pointer;
}
.cookie-modal-content button.close:hover {
  background: var(--retro-orange);
  color: var(--deep-brown);
}

/* ===================
   RESPONSIVE DESIGN
=================== */
@media (max-width: 1040px) {
  .container {
    max-width: 90vw;
  }
}

@media (max-width: 900px) {
  header nav ul { gap: 13px; }
  .footer-nav ul { gap: 9px; }
  .footer-social { gap: 10px; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.32rem; padding: 0 12px; }
  header .cta.primary { font-size: 1rem; padding: 9px 13px; margin-left: 7px; }
  .container { padding: 0 10px; }
  .section { margin-bottom: 34px; padding: 32px 10px; }
  .cta {padding-top: 26px; padding-bottom: 32px;}
  .footer-social a img { width: 28px; height: 28px; }

  .content-wrapper, .card-container, .story-cards, .stats-grid, .card-grid, .blog-list .article-cards {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 18px !important;
  }
  .features .content-wrapper ul,
  .features .content-wrapper ul li,
  .story-cards > div,
  .stats-grid > div,
  .blog-list .article-cards article {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
  }
  header nav ul { display: none; }
  header nav .cta.primary { display: none; }
  .mobile-menu-toggle { display: flex; }
  .footer-social { gap: 6px; }
  footer .container { flex-direction: column; gap: 22px; }
  .brand-contact img { width: 40px; }
}

@media (max-width: 568px) {
  .container { padding: 0 4px; }
  .section { padding: 20px 4px; }
  h1 { font-size: 1.37rem; }
  h2 { font-size: 1.1rem; }
  .cta.primary, .cta .primary {
    padding: 9px 8vw;
    font-size: 0.99rem;
  }
  .newsletter input[type="email"] {
    width: 100%;
    margin-right: 0;
    font-size: 1rem;
    padding: 8px 9px;
  }
  .newsletter form { flex-direction: column; align-items: stretch; gap: 13px; }
  .cookie-modal-content { min-width: 94vw; padding: 17px 5vw; }
}
/* End */
