/* ===========================================================
   Flickering Wild – Monochrome Sophisticated CSS
   Brand Palette: #1C282B, #FFFFFF, #B14E40, #2A3C40, #F2EFE6, #C6776C
   Fonts: 'Playfair Display', 'Lato', serif, sans-serif
   =========================================================== */

/* RESET & BASE ------------------------------------------------- */
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, 
main, 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 {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', Arial, sans-serif;
  background: #FFFFFF;
  color: #222;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

a {
  color: #1C282B;
  text-decoration: none;
  position: relative;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #B14E40;
}

/* CONTAINER & WRAPPERS ---------------------------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

/* SECTIONS & SPACING ----------------------------------------- */
section {
  background: #FFF;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(28,40,43,0.08);
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  max-width: 360px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.25s cubic-bezier(.4,0,.2,1), transform 0.15s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(28,40,43,0.14);
  transform: translateY(-4px) scale(1.01);
  z-index: 2;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 14px;
  background: #F8F8F8;
  box-shadow: 0 2px 16px rgba(28,40,43,0.07);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  max-width: 380px;
  flex: 1 1 320px;
  color: #222;
}
.testimonial-card p {
  font-style: italic;
  font-size: 1.12rem;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.97rem;
  color: #444;
}
.testimonial-meta img {
  width: 20px;
  height: 20px;
  display: inline-block;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FBFBFB;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(44,44,44,0.06);
  padding: 28px 20px;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item:hover {
  box-shadow: 0 6px 28px rgba(44,44,44,0.14);
  transform: translateY(-4px) scale(1.02);
}

/* HEADER --------------------------------------------- */
header {
  width: 100%;
  background: #FFFFFF;
  padding: 0;
  box-shadow: 0 2px 12px rgba(44,44,44,0.035);
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
}
header > a img {
  height: 56px;
  margin: 10px 24px 10px 10px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
header nav a {
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.06rem;
  padding: 8px 0;
  margin: 0 5px;
  color: #2A3C40;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border 0.18s cubic-bezier(.4,0,.2,1);
}
header nav a:hover, header nav a:focus {
  color: #B14E40;
  border-bottom: 2px solid #B14E40;
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.1rem;
  color: #1C282B;
  margin-left: 32px;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 87;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #B14E40;
}

/* MOBILE MENU --------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(25,30,34, 0.96);
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.4,0,.2,1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
  box-shadow: 2px 0 35px rgba(28,40,43,0.32);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #FFF;
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 24px 32px 8px 0;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 36px;
  gap: 24px;
}
.mobile-nav a {
  color: #FFF;
  font-size: 1.22rem;
  padding: 10px 0 10px 12px;
  border-left: 4px solid transparent;
  border-radius: 4px;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 4px;
  transition: background 0.18s, color 0.18s, border 0.23s cubic-bezier(.4,0,.2,1);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #222;
  color: #B14E40;
  border-left: 4px solid #B14E40;
}

/* TYPOGRAPHY ------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #1C282B;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.13;
  margin-bottom: 8px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.22rem;
  font-weight: 600;
  margin-bottom: 6px;
}
p, li, ul, ol {
  font-size: 1.08rem;
  color: #222;
}
.subheadline {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.13rem;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.5;
  letter-spacing: 0.1px;
}
strong {
  font-weight: 700;
}

tl, ul, ol {
  margin-bottom: 16px;
  padding-left: 21px;
}
ul li, ol li {
  margin-bottom: 10px;
  color: #232323;
  line-height: 1.5;
}
.text-section {
  margin-bottom: 20px;
}

/* BUTTONS & CTA -------------------------------------------- */
.cta, .primary, .button, button, input[type="submit"] {
  font-family: 'Lato', Arial, sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1C282B;
  color: #FFF;
  font-size: 1.06rem;
  font-weight: 600;
  padding: 14px 36px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 1px 10px rgba(28,40,43,0.04);
  transition: background 0.17s, color 0.19s, box-shadow 0.2s;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.cta.primary {
  background: #B14E40;
  color: #FFF;
}
.cta.primary:hover, .cta.primary:focus {
  background: #2A3C40;
  color: #FFF;
  box-shadow: 0 6px 32px rgba(44,44,44,0.09);
}
.cta:not(.primary):hover, .cta:not(.primary):focus {
  background: #232e30;
  color: #F2EFE6;
}
.button {
  background: #444;
  color: #FFF;
}
button:focus {
  outline: 2px solid #B14E40;
}

/* INFO, BOXES, SPECIALS ------------------------------------ */
.info-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}
.info-box {
  background: #F2EFE6;
  color: #1C282B;
  border-radius: 8px;
  box-shadow: 0 1px 7px rgba(44,44,44,0.07);
  flex: 1 1 220px;
  min-width: 200px;
  padding: 18px 16px;
  margin-bottom: 20px;
  font-size: 1.01rem;
  transition: box-shadow 0.18s;
}
.info-box:hover {
  box-shadow: 0 3px 18px rgba(44,44,44,0.13);
}
.benefit-points {
  margin: 16px 0;
  padding-left: 22px;
  list-style: disc;
}
.service-highlight {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  background: #F9F9FB;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(44,44,44,0.07);
  margin: 16px 0 24px 0;
  padding: 22px 18px;
}
.service-highlight img {
  width: 40px;
  height: 40px;
}

/* TABLES (e.g. Comparison Chart) --------------------------- */
.comparison-chart table {
  width: 100%;
  border-collapse: collapse;
}
.comparison-chart th, .comparison-chart td {
  padding: 14px 10px;
  text-align: left;
}
.comparison-chart th {
  background: #1C282B;
  color: #FFF;
  font-weight: 700;
}
.comparison-chart tr:nth-child(even) td {
  background: #F7F7F7;
}
.comparison-chart td {
  border-bottom: 1px solid #EEE;
}

/* DIY and Callout Styles ---------------------------------- */
.diy-guides, .callout-box, .practical-examples, .ingredients-glossary {
  background: #F2EFE6;
  border-left: 4px solid #B14E40;
  border-radius: 7px;
  padding: 14px 18px;
  margin: 12px 0 22px 0;
  color: #232323;
}

/**** Features, services, and cards layouts ****/
.feature-grid, .service-list, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.service-list {
  gap: 24px;
  margin-bottom: 24px;
}
.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #F9F8F7;
  border: 1px solid #DBDBDB;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(34,48,54,0.06);
  padding: 24px 20px 20px 20px;
  margin-bottom: 20px;
  flex: 1 1 224px;
  max-width: 300px;
  font-size: 1rem;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.service-item img {
  width: 36px;
  margin-bottom: 6px;
}
.service-item strong {
  color: #B14E40;
}
.service-item:hover {
  border-color: #B14E40;
  box-shadow: 0 5px 28px rgba(44,44,44,0.11);
}

/**** Address overview & Contact Sections ****/
.address-overview, .address-and-map {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  background: #F2EFE6;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 18px 18px;
}
.address-overview img, .address-and-map img {
  width: 35px;
  height: 35px;
}
.phone-and-email p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-weight: 500;
}
.phone-and-email img {
  width: 22px; height: 22px;
}

.opening-hours {
  background: #F8F8F8;
  border-radius: 5px;
  padding: 8px 16px;
  margin-top: 14px;
  font-weight: 500;
}

/**** Workshop & List styles ****/
.workshop-list {
  margin: 0 0 14px 0;
  padding-left: 25px;
  list-style-type: disc;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dates-and-prices {
  background: #F2EFE6;
  border-left: 4px solid #B14E40;
  border-radius: 7px;
  padding: 14px 18px;
  margin: 12px 0 18px 0;
}
.how-to-sign-up {
  margin-bottom: 14px;
}
.feedback-quotes {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.feedback-quotes .testimonial-card {
  background: #F7F7F7;
  color: #1C282B;
}

/**** Footer ------------------------------------- ****/
footer {
  background: #1C282B;
  color: #FFF;
  width: 100%;
  padding: 0 0 0 0;
  margin-top: 48px;
}
footer .container {
  padding: 0 20px;
}
.footer-address,
.footer-legal {
  color: #B9C3C8;
  font-size: 1rem;
  margin-top: 18px;
}
footer nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 14px;
}
footer nav a {
  color: #FFF;
  opacity: 0.82;
  font-size: 1rem;
  transition: color 0.14s, opacity 0.12s;
  padding: 4px 0;
}
footer nav a:hover, footer nav a:focus {
  color: #B14E40;
  opacity: 1;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 19px;
  align-items: center;
  margin-top: 12px;
}
.social-links a img {
  filter: grayscale(1) contrast(0.9);
  opacity: 0.7;
  width: 28px;
  transition: filter 0.2s, opacity 0.17s;
}
.social-links a:hover img {
  filter: none;
  opacity: 1;
}
.footer-legal {
  margin-top: 22px;
  border-top: 1px solid #2A3C40;
  padding: 10px 0 16px 0;
  font-size: 0.98rem;
  color: #B9C3C8;
}

/**** RATINGS SUMMARY ****/
.ratings-summary {
  margin-top: 18px;
  font-size: 1.08rem;
  background: #EFEFEF;
  color: #2A3C40;
  font-weight: 600;
  border-radius: 7px;
  padding: 10px 18px;
  display: inline-block;
  letter-spacing: 0.1px;
}

/**** TEAM BIOS ****/
.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 14px 0 18px 0;
}
.team-bios > div {
  flex: 1 1 230px;
  background: #F2EFE6;
  border-radius: 8px;
  padding: 18px 14px;
  font-size: 1.06rem;
  margin-bottom: 10px;
}

/**** FAQ ****/
.faq {
  display: flex;
  flex-direction: column;
  gap: 13px;
  background: #F8F8F8;
  border-radius: 7px;
  padding: 14px 18px;
  margin: 18px 0;
}
.faq h3 {
  margin-bottom: 12px;
}
.faq div strong {
  color: #1C282B;
}

/**** SPECIALS: Confirmation etc. ****/
.confirmation-message {
  background: #F2EFE6;
  border-radius: 7px;
  padding: 14px 18px;
  margin: 10px 0 20px 0;
  color: #232323;
}

/**** Animations for transitions ****/
@keyframes slideInMenu {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}
@keyframes slideOutMenu {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/**** COOKIE BANNER & MODAL ***********************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1C282B;
  color: #FFF;
  padding: 22px 24px;
  box-shadow: 0 -2px 24px rgba(28,40,43,0.19);
  z-index: 3500;
  font-size: 1rem;
  gap: 18px;
  flex-wrap: wrap;
  animation: cookieBannerAppear 0.28s cubic-bezier(.5,0,.2,1);
}
@keyframes cookieBannerAppear {
  from { opacity: 0; transform: translateY(48px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  background: #B14E40;
  color: #FFF;
  border: none;
  border-radius: 7px;
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
  margin: 0 1px;
}
.cookie-banner button.secondary {
  background: #444;
}
.cookie-banner button.settings {
  background: none;
  color: #FFF;
  text-decoration: underline;
  padding: 10px 10px;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #2A3C40;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #232e30;
  color: #FFF;
}

/**** COOKIE MODAL **************************************/
.cookie-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(25,30,34,0.76);
  justify-content: center;
  align-items: center;
  z-index: 4000;
  pointer-events: none;
  opacity: 0;
}
.cookie-modal-overlay.open {
  display: flex;
  pointer-events: all;
  opacity: 1;
  animation: cookieModalAppear 0.25s cubic-bezier(0.5,0,0.2,1);
}
@keyframes cookieModalAppear {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #FFF;
  color: #222;
  border-radius: 12px;
  box-shadow: 0 8px 48px rgba(34,44,54,0.14);
  max-width: 420px;
  width: 92vw;
  padding: 32px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 4100;
  animation: modalGrowIn 0.21s cubic-bezier(.5,0,.2,1);
}
@keyframes modalGrowIn {
  from {transform: scale(0.91); opacity:0;}
  to {transform: scale(1); opacity:1;}
}
.cookie-modal-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.38rem;
  font-weight: 700;
  color: #1C282B;
  margin-bottom: 7px;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  justify-content: space-between;
}
.cookie-switch {
  appearance: none;
  width: 40px;
  height: 22px;
  background: #EEEEEE;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-switch:checked {
  background: #B14E40;
}
.cookie-switch:before {
  content: '';
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #FFF;
  position: absolute;
  top: 1.5px; left: 1.5px;
  transition: left 0.18s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 0.5px 3px rgba(0,0,0,0.13);
}
.cookie-switch:checked:before {
  left: 19.5px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #B14E40;
  font-size: 1.3rem;
  position: absolute;
  top: 16px; right: 15px;
  cursor: pointer;
  transition: color 0.2s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #2A3C40;
}

/**** Responsive ------------------------------------------ */
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
    padding: 0 7vw;
  }
  .feature-item, .service-item {
    max-width: 48vw;
  }
  .card {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-list, .testimonial-list {
    flex-direction: column;
    gap: 22px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .team-bios {
    flex-direction: column;
    gap: 14px;
  }
  .feedback-quotes {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .container {
    max-width: 100vw;
    padding: 0 6vw;
  }
  .feature-item, .service-item, .card, .testimonial-card {
    max-width: 100vw;
    min-width: 0;
    padding-left: 12px;
    padding-right: 12px;
  }
  .info-boxes, .feature-grid, .service-list, .testimonial-list, .feedback-quotes {
    gap: 14px;
  }
  .content-wrapper {
    gap: 26px;
    padding: 10px 0;
  }
  .section {
    margin-bottom: 38px;
    padding: 24px 6vw;
  }
  .address-overview, .address-and-map {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 7px;
  }
}
@media (max-width: 500px) {
  html {
    font-size: 14px;
  }
  section {
    padding: 0;
  }
  .section, .container {
    padding: 0 3vw;
  }
  .info-box, .card, .feature-item, .service-item {
    padding-left: 7px;
    padding-right: 7px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 16px 8px;
    font-size: 0.99rem;
  }
  .cookie-modal {
    padding: 20px 7vw 20px 7vw;
    max-width: 97vw;
    font-size: 1rem;
  }
}

/* ============= Scrollbar Style for Sophisticated Feel ============= */
body::-webkit-scrollbar {
  width: 9px;
  background: #EEE;
}
body::-webkit-scrollbar-thumb {
  background: #B9C3C8;
  border-radius: 6px;
}

/* ============= Selection ============= */
::selection {
  background: #B14E40;
  color: #FFF;
}

/* ============= Miscellaneous ============= */
hr {
  border: none;
  border-top: 1px solid #EEE;
  margin: 32px 0;
}

/* ============= Accessibility Enhancements ============= */
a:focus, button:focus, .cta:focus, .primary:focus {
  outline: 2px solid #B14E40;
  outline-offset: 2px;
}

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