/* =======================
   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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #FBF5E6;
  color: #1B2838;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #26425A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B05C37;
}
ul, ol {
  margin-left: 1.25em;
  padding-left: 0.5em;
}
strong, b {
  font-weight: 700;
}

/* =======================
   COLOR PALETTE (Retro-Vintage)
   ======================= */
:root {
  --primary: #1B2838; /* deep blue, main brand */
  --secondary: #325574; /* steely, elegant */
  --accent: #F3F6F9; /* light bluish off-white */
  --vintage-bg: #FBF5E6; /* subtle parchment */
  --vintage-card: #F9E4C8; /* soft retro beige */
  --vintage-brown: #B05C37; /* muted orange-brown */
  --vintage-green: #8CA07E; /* faded olive */
  --vintage-blue: #6699CC; /* retro blue */
  --vintage-gold: #FFD07B; /* gentle gold */
  --vintage-red: #D36C6C; /* oldbrick red */
}

/* =======================
   TYPOGRAPHY
   ======================= */
@import url('https://fonts.googleapis.com/css?family=Exo:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Exo', 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--primary);
  text-shadow: 1px 1px 0 var(--vintage-card);
  margin-bottom: 20px;
}
h1 {
  font-size: 2.25rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  font-weight: 700;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 700;
}
p, li, span, a, ul, ol {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-size: 1rem;
  line-height: 1.65;
}
.hero-subline {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
  font-style: italic;
}

/* =======================
   LAYOUT STRUCTURE
   ======================= */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/**********
 HERO SECTION
***********/
.hero {
  background: linear-gradient(0deg, var(--vintage-gold) 75%, var(--vintage-bg) 100%);
  background-blend-mode: multiply;
  padding: 60px 0 40px 0;
  border-bottom: 6px dotted var(--vintage-brown);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 12px;
}

/**********
 FLEXBOX LAYOUTS
***********/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 12px;
}
.feature-grid > div {
  background: var(--vintage-card);
  padding: 28px 20px 20px 20px;
  border-radius: 16px;
  box-shadow: 0 3px 16px 0 rgba(60,36,13,0.11);
  border: 2px solid var(--vintage-gold);
  min-width: 240px;
  flex: 1 1 240px;
  max-width: 340px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.23s, transform 0.23s;
  position: relative;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 28px 0 rgba(60,36,13,0.24), 0 3px 0 var(--vintage-brown) inset;
  transform: translateY(-3px) scale(1.04);
}
.feature-grid img {
  width: 46px;
  margin-bottom: 18px;
  filter: sepia(0.4) hue-rotate(-13deg) contrast(1.1);
}

.service-cards, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-cards > div, .service-list > div {
  background: var(--vintage-bg);
  border-radius: 14px;
  border: 1.5px solid var(--vintage-green);
  box-shadow: 0 2px 12px 0 rgba(112,74,23,0.08);
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 220px;
  padding: 22px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.22s;
}
.service-cards > div:hover, .service-list > div:hover {
  box-shadow: 0 7px 28px 0 rgba(60,36,13,0.13);
  transform: translateY(-2px) scale(1.025);
}
.service-price {
  display: inline-block;
  margin-top: 12px;
  background: var(--vintage-gold);
  color: var(--primary);
  font-family: 'Exo', 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(170,116,43,0.07) inset;
  letter-spacing: 0.2px;
}

/**********
 TESTIMONIALS
***********/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  min-width: 240px;
  max-width: 380px;
  background: #FEFEFC;
  border-radius: 20px;
  border: 2.5px dashed var(--vintage-brown);
  box-shadow: 0 4px 20px 0 rgba(55,34,12,0.10);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: box-shadow 0.23s, transform 0.23s;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: var(--primary);
  letter-spacing: 0.2px;
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--vintage-brown);
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px 0 rgba(60,36,13,0.21);
  transform: scale(1.028);
}

/**********
 BLOG LIST, WORKSHOP LIST, ETC.
***********/
.blog-list, .workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-list article, .workshop-list > div {
  background: var(--vintage-card);
  border-radius: 10px;
  border: 1.5px solid var(--vintage-green);
  padding: 20px 16px 16px 16px;
  margin-bottom: 20px;
  max-width: 350px;
  flex: 1 1 220px;
  box-shadow: 0 2px 11px 0 rgba(111,80,40,0.09);
  transition: box-shadow 0.23s, transform 0.22s;
}
.blog-list article:hover, .workshop-list > div:hover {
  box-shadow: 0 7px 23px 0 rgba(98,58,11,0.1);
  transform: scale(1.023);
}

/**********
 COOKIE CONSENT BANNER/MODAL
***********/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--vintage-card);
  color: var(--primary);
  box-shadow: 0 -3px 22px 0 rgba(111,80,40,0.14);
  border-top: 2px solid var(--vintage-brown);
  z-index: 2010;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 22px 24px;
  animation: cookie-popup 0.33s cubic-bezier(.73,.09,.74,.96);
}
@keyframes cookie-popup {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
/* .cookie-banner buttons */
.cookie-banner-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-banner button {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 7px;
  border: 0;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.17s;
}
.cookie-accept {
  background: var(--vintage-green);
  color: var(--primary);
  border: 2px solid var(--vintage-green);
  box-shadow: 0 2px 7px rgba(170,137,61,0.05);
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--vintage-brown);
  color: #FFF;
}
.cookie-reject {
  background: #FFF;
  color: var(--vintage-red);
  border: 2px solid var(--vintage-red);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: var(--vintage-red);
  color: #fff;
}
.cookie-settings-btn {
  background: var(--vintage-gold);
  color: var(--primary);
  border: 2px solid var(--vintage-gold);
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: var(--vintage-blue);
  color: #fff;
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(27,40,56,0.44);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-overlayIn 0.18s cubic-bezier(.63,.04,.95,.91);
}
@keyframes cookie-overlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--vintage-bg);
  border-radius: 18px;
  padding: 30px 24px 24px 24px;
  margin: 20px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 8px 34px 0 rgba(62,41,21,0.23);
  border: 2.2px solid var(--vintage-brown);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookie-modalIn 0.33s cubic-bezier(.66,-0.14,.91,1.1);
}
@keyframes cookie-modalIn {
  from { transform: scale(0.86); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  margin-bottom: 0.5em;
  font-family: 'Exo', 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--secondary);
  font-size: 1.18rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
}
.cookie-modal .cookie-toggle {
  width: 40px; height: 22px;
  background: #ddd;
  border-radius: 12px;
  border: none;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background 0.19s;
}
.cookie-modal .cookie-toggle[data-on="true"] {
  background: var(--vintage-green);
}
.cookie-modal .cookie-toggle::before {
  content: "";
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 2px; top: 2px;
  transition: left 0.16s;
}
.cookie-modal .cookie-toggle[data-on="true"]::before {
  left: 20px;
}

.cookie-modal .cookie-category.essential label {
  font-style: italic;
  color: var(--vintage-brown);
}

.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}

/**********
 BUTTONS & CTA BTN
***********/
.cta-btn {
  font-family: 'Exo', 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--vintage-brown);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 13px 32px;
  box-shadow: 0 2px 13px 0 rgba(140,90,46,0.11);
  letter-spacing: 1px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.13s;
  margin-top: 10px;
  margin-bottom: 7px;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--vintage-blue);
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(102,153,204,0.13), 0 2px 0 #fff inset;
  transform: translateY(-2px) scale(1.04);
}
button, input[type=button] {
  font-family: inherit;
  font-size: 1rem;
}

/**********
 HEADER & NAVIGATION
***********/
header {
  background: var(--vintage-bg);
  border-bottom: 3px solid var(--vintage-brown);
  box-shadow: 0 3px 10px 0 rgba(92,77,63,0.07);
  z-index: 1110;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  min-height: 64px;
}
header img {
  width: 128px;
  margin-right: 10px;
}
.main-nav {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  align-items: center;
  margin-left: 20px;
}
.main-nav a {
  font-size: 1rem;
  font-family: 'Exo', 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  padding: 7px 10px;
  border-radius: 8px;
  position: relative;
  transition: background 0.18s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus, .main-nav a.active {
  background: var(--vintage-gold);
  color: var(--vintage-brown);
}

/**********
 MOBILE MENU
***********/
.mobile-menu-toggle {
  display: none;
  background: var(--vintage-brown);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 12px;
  padding: 6px 16px 2px 16px;
  cursor: pointer;
  z-index: 1301;
  margin-left: 18px;
  align-self: center;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--vintage-blue);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: var(--vintage-card);
  box-shadow: 2px 0 48px 0 rgba(101,72,23,0.21);
  z-index: 1500;
  transform: translateX(100vw);
  transition: transform 0.33s cubic-bezier(.63,.04,.85,.91);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100vw;
  max-width: 100vw;
  padding: 0;
  overflow: auto;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--vintage-brown);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 12px;
  padding: 3px 15px 3px 15px;
  cursor: pointer;
  z-index: 1517;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--vintage-blue);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 68px 0 0 32px;
  padding-bottom: 55px;
}
.mobile-nav a {
  font-family: 'Exo', 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-size: 1.18rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 10px;
  padding: 14px 10px;
  transition: background 0.18s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--vintage-gold);
  color: var(--vintage-brown);
}

/*****************
 FOOTER
******************/
footer {
  background: var(--vintage-bg);
  border-top: 2px dotted var(--vintage-brown);
  padding: 28px 0 16px 0;
}
footer .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  color: var(--secondary);
  font-size: 1rem;
  letter-spacing: 0.3px;
  font-family: 'Exo', 'Roboto', Arial, Helvetica, sans-serif;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--vintage-brown);
  text-decoration: underline;
}
footer span {
  color: #8b7361;
  font-family: 'Exo', 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-top: 7px;
}

/*************
 TEXT/IMAGE AND CARD CONTAINERS
**************/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 24px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/***************
 CTA BLOCKS
****************/
.cta-block {
  background: var(--vintage-gold);
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(140,90,46,0.12);
  margin-top: 44px;
  margin-bottom: 60px;
}
.cta-block .content-wrapper {
  align-items: center;
  gap: 16px;
  text-align: center;
}

/***************
 THANK YOU PAGE
****************/
.thankyou-section {
  background: var(--vintage-card);
  border-radius: 16px;
  box-shadow: 0 8px 40px 0 rgba(140,90,46,0.11);
  margin-top: 48px;
  margin-bottom: 60px;
  padding: 40px 20px;
  text-align: center;
}
.thankyou-section h1 {
  color: var(--vintage-brown);
}

/**********************
 SPACING & WHITESPACE
**********************/
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
  }
  .feature-grid, .service-cards, .service-list, .testimonial-slider,
  .blog-list, .workshop-list {
    gap: 19px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 7px;
  }
  .card, .feature-grid > div, .service-cards > div, .testimonial-card,
  .blog-list article, .workshop-list > div {
    min-width: 0;
    max-width: 100vw;
    width: 100%;
  }
  .hero {
    padding: 29px 0 20px 0;
  }
}

/*******************
 RESPONSIVE FLEXBOX
********************/
@media (max-width: 1020px) {
  header .container {
    flex-wrap: wrap;
    gap: 12px;
  }
  .feature-grid, .service-cards, .service-list, .testimonial-slider,
  .blog-list, .workshop-list {
    justify-content: center;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 15px;
    margin-left: 9px;
  }
  .card-container, .content-grid {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 10px 21px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid, .service-cards, .service-list, .testimonial-slider, .blog-list, .workshop-list {
    flex-direction: column;
    align-items: stretch;
    gap: 17px;
  }
  .feature-grid > div, .service-cards > div, .service-list > div, .testimonial-card, .blog-list article, .workshop-list > div {
    max-width: 96vw;
    margin-left: 0;
    margin-right: 0;
    min-width: unset;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 16px !important;
  }
  .cta-block, .thankyou-section {
    padding: 22px 6px;
    margin-top: 18px;
    margin-bottom: 30px;
  }
  .footer-nav {
    gap: 8px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner {
    flex-direction: column;
    padding: 16px 7px;
    gap: 13px;
  }
}

/**************
 MISC VINTAGE-RETRO DETAILS
***************/
.feature-grid > div::before {
  content: "";
  display: block;
  position: absolute;
  top: -16px; left: 0; right: 0;
  margin: 0 auto;
  width: 42px; height: 6px;
  background: repeating-linear-gradient(135deg, var(--vintage-brown), var(--vintage-brown) 6px, var(--vintage-bg) 6px, var(--vintage-bg) 12px);
  border-radius: 12px;
  opacity: 0.11;
  z-index: 1;
}
.service-cards > div::after, .service-list > div::after {
  content: "";
  display: block;
  position: absolute;
  left: 16px; bottom: 13px;
  width: 72px; height: 8px;
  background: repeating-linear-gradient(90deg, var(--vintage-gold), var(--vintage-gold) 8px, transparent 8px, transparent 16px);
  border-radius: 8px;
  opacity: 0.13;
  z-index: 1;
}

/***************
 UTILITY CLASSES
****************/
.bg-primary { background: var(--primary) !important; color: #fff !important; }
.bg-secondary { background: var(--secondary) !important; color: #fff !important; }
.bg-accent { background: var(--accent) !important; color: var(--primary) !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-uppercase { text-transform: uppercase; }
.text-highlight { color: var(--vintage-brown); font-weight: 700; }

/***************
 FORM ELEMENTS
****************/
input, textarea, select {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1.6px solid var(--vintage-brown);
  background: #fff9f2;
  margin-bottom: 16px;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--vintage-blue);
  border-color: var(--vintage-blue);
}
label {
  font-family: 'Exo', 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 2px;
  display: block;
}

/*************
 SCROLLBAR VINTAGE STYLE
**************/
::-webkit-scrollbar {
  width: 9px;
  background: #e6dac5;
}
::-webkit-scrollbar-thumb {
  background: var(--vintage-gold);
  border-radius: 10px;
  border: 2px solid #e6dac5;
}

/*******************
 FOCUS STYLES
********************/
a:focus, button:focus, input:focus, .cta-btn:focus, .mobile-menu-close:focus {
  outline: 2px dashed var(--vintage-brown);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px var(--vintage-gold);
}

/*******************
 PRINT STYLES (optional)
********************/
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff; color: #000; }
}
