/* 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;
}
body {
  line-height: 1;
  background: #f5f1e3;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* VINTAGE RETRO ROOTS & UTILS */
:root {
  --primary: #205040;
  --secondary: #ECD8B2;
  --accent: #A47551;
  --accent-dark: #8C4414;
  --bg: #f5f1e3;
  --text-main: #2d2013;
  --text-light: #fffaf2;
  --btn-shadow: 0 3px 0 0 #a47551;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 7px;
  --shadow-card: 0 3px 18px 0 rgba(60,32,10,0.10), 0 1.5px 3.5px 0 rgba(140,68,20,0.05);
  --transition: all 0.22s cubic-bezier(.61,0,.19,1);
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--bg);
  min-height: 100vh;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}

/******************************/
/* TYPOGRAPHY - RETRO ESSENCE */
/******************************/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
  line-height: 1.18;
  margin-bottom: 18px;
  text-shadow: 0 1px 0 #f5f1e3,0 2px 0 #ecd8b2;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 1.1em;
}
.subheadline {
  font-family: var(--font-display);
  font-size: 1.17rem;
  color: var(--accent-dark);
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.tagline {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.01rem;
  margin-left: 12px;
  letter-spacing: 0.06em;
  white-space: normal;
}
strong {
  font-weight: 700;
  color: var(--accent);
}

ul, ol {
  margin: 0 0 18px 22px;
  padding: 0;
}
ul li {
  list-style: disc;
  margin-bottom: 7px;
}

/******************************/
/* HEADER/NAVIGATION & BRAND */
/******************************/
header {
  background: var(--secondary);
  border-bottom: 5px solid var(--accent-dark);
  box-shadow: 0 1.5px 10px 0 rgba(32,80,64,0.06);
  padding: 0;
}
.branding {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0 8px 0;
  margin-bottom: 0;
}
.branding img {
  height: 48px;
  width: auto;
  border-radius: var(--radius-md);
  background:#f6eee0;
  border: 2px solid var(--accent-dark);
  padding: 5px;
}

nav.main-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.main-nav a {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 600;
  padding: 10px 5px;
  border-radius: var(--radius-sm);
  position: relative;
  font-size: 1.04rem;
  background: transparent;
  transition: background .18s, color .17s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--accent);
  color: var(--text-light);
}

.cta-btn {
  display: inline-block;
  padding: 12px 30px;
  margin-left: 22px;
  border-radius: var(--radius-lg);
  background: var(--primary);
  color: var(--secondary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: var(--btn-shadow);
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition), box-shadow .17s;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--accent-dark);
  color: var(--text-light);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 5px 40px 0 rgba(164,117,81,0.14);
}

/*******************************/
/* MOBILE NAVIGATION BURGER */
/*******************************/
.mobile-menu-toggle {
  display: none;
  background: var(--accent-dark);
  color: var(--secondary);
  border: none;
  padding: 8px 16px;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 50%;
  margin-left: 24px;
  transition: background .15s;
  align-self: center;
  z-index: 52;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--primary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--secondary);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.55,0,.18,1);
  box-shadow: 18px 0 44px 0 rgba(32,80,64,0.14);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--accent-dark);
  font-size: 2rem;
  padding: 18px 22px;
  cursor: pointer;
  align-self: flex-end;
  transition: color .17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 22px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.33rem;
  padding: 12px 32px 12px 24px;
  border-radius: var(--radius-sm);
  transition: background .2s, color .12s;
  margin-left: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent-dark);
  color: var(--secondary);
}

/***************************************/
/* HERO & BACKGROUND PATTERNS RETRO */
/***************************************/
.hero {
  background: repeating-linear-gradient(-25deg, #ECE2CB 0px, #ECE2CB 26px, #f5f1e3 32px, #f5f1e3 76px);
  border-top: 7px double var(--accent-dark);
  border-bottom: 7px double var(--accent-dark);
  margin-bottom: 60px;
  padding: 40px 0;
  overflow-x: hidden;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 0;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 10px;
}

/**************************************/
/* SECTIONS, SPACING, FLEX LAYOUTS */
/**************************************/
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.text-section {
  max-width: 800px;
  margin: 0 auto;
}
.content-grid,
.features-grid,
.services-cards,
.card-container,
.workshop-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.features-grid {
  gap: 32px;
  justify-content: flex-start;
}
.features-grid .feature {
  background: #fffaf3;
  flex: 1 1 210px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 34px 22px 28px 22px;
  max-width: 320px;
  min-width: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow var(--transition), transform var(--transition);
  border: 1.5px dashed var(--accent);
  margin-bottom: 20px;
}
.features-grid .feature:hover {
  box-shadow: 0 10px 39px 0 rgba(32,80,64,0.11);
  transform: scale(1.028);
}
.features-grid .feature img {
  height: 56px;
  margin-bottom: 18px;
}
.features-grid .feature h3 {
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 2px 0 10px 0;
}

.services-cards {
  gap: 24px;
  margin-top: 10px;
}
.service-card {
  flex: 1 1 240px;
  background: #fffaf3;
  border-radius: var(--radius-md);
  border: 2.2px solid var(--secondary);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 18px 22px 22px;
  transition: border-color .13s, box-shadow .16s;
}
.service-card:hover,
.service-card:focus-within {
  border-color: var(--accent-dark);
  box-shadow: 0 4px 24px 0 rgba(206,163,96,0.13);
}
.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-family: var(--font-display);
  color: var(--primary);
}
.service-card .service-price {
  display: block;
  color: var(--accent-dark);
  margin-top: 6px;
  font-size: 1rem;
}
.service-card a {
  margin-top: auto;
  align-self: flex-start;
  font-family: var(--font-display);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 1.06rem;
  text-decoration: underline;
  border-radius: var(--radius-sm);
  padding: 8px;
  transition: background .18s, color .17s;
}
.service-card a:hover {
  background: var(--accent-dark);
  color: var(--secondary);
}

.card-container {
  gap: 24px;
}
.card {
  background: #fffaf3;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  position: relative;
  margin-bottom: 20px;
}

.content-grid {
  gap: 20px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/**************************************/
/* TESTIMONIALS - RETRO QUOTES */
/**************************************/
.testimonials {
  margin-bottom: 0;
}
.testimonials .content-wrapper {
  gap: 22px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 28px 20px 30px;
  background: linear-gradient(99deg, #f1ebdb 70%, #ecd8b2 100%);
  border-radius: var(--radius-lg);
  border-left: 6px solid var(--accent-dark);
  margin-bottom: 20px;
  box-shadow: 0 2px 9px 0 rgba(164,117,81,.12);
  transition: box-shadow .16s, border-color .24s;
  color: #31270c;
  max-width: 650px;
}
.testimonial-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 14px 0 rgba(32,80,64,0.10);
}
.testimonial-card p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #3c2f13;
  font-style: italic;
  margin-bottom: 6px;
  line-height: 1.5;
}
.testimonial-author {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--primary);
  margin-left: 4px;
  font-weight: 700;
  background: #ecd8b2;
  padding: 2px 10px;
  border-radius: 7px;
}

/**************************************/
/* CALLOUT & TIP BOX / INFO SECTIONS */
/**************************************/
.callout-section {
  background: #ecd8b2;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin-bottom: 60px;
  padding: 34px 20px;
}
.callout-section h2 {
  color: var(--accent-dark);
}
.callout-section .cta-btn {
  margin-top: 12px;
}

.tipbox-section {
  margin-bottom: 60px;
  padding: 40px 0px;
}
.tip-box {
  background: #f6eee0;
  border: 2px dashed var(--accent-dark);
  border-radius: var(--radius-md);
  padding: 26px 26px;
  box-shadow: 0 3px 16px 0 rgba(164,117,81,0.07);
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.04rem;
  line-height: 1.5;
  font-style: italic;
}

/*******************************/
/* WORKSHOP LIST CARDS */
/*******************************/
.workshop-list-section .workshop-grid {
  gap: 24px;
}
.workshop-card {
  flex: 1 1 280px;
  background: #fffaf3;
  border: 2px solid var(--accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 25px 18px 18px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .18s, box-shadow .18s;
}
.workshop-card:hover {
  border-color: var(--accent-dark);
  box-shadow: 0 6px 24px 0 rgba(140,68,20,0.10);
}

/*******************************/
/* THANK YOU PAGE & CONTACT */
/*******************************/
.thankyou-section .cta-btn {
  margin-top: 20px;
}

.contact-info-section,
.map-and-info {
  background: #fffaf3;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-bottom: 32px;
  padding: 24px 20px;
}

/*******************************/
/* FOOTER RETRO VIBES */
/*******************************/
footer {
  background: var(--primary);
  color: var(--secondary);
  padding: 0;
  font-size: 1rem;
}
.footer-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 0 28px 0;
}
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-branding img {
  height: 38px;
}
.footer-branding span {
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  color: var(--secondary);
  margin-top: 2px;
}
.footer-branding p {
  font-size: 0.95rem;
  color: #f9ecd4;
  margin-bottom: 0;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.02rem;
  transition: color .19s;
  margin-bottom: 7px;
}
.footer-nav a:hover {
  color: var(--secondary);
}
.footer-contact {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: #f9ecd4;
  margin-top: 6px;
}

/*******************************/
/* COOKIE CONSENT BANNER/MODAL */
/*******************************/
.cookie-banner {
  position: fixed;
  left: 24px; right: 24px;
  bottom: 24px;
  z-index: 1200;
  background: #ecd8b2;
  color: var(--primary);
  box-shadow: 0 2px 24px 0 rgba(140,68,20,0.12);
  border-radius: var(--radius-lg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 24px 24px 20px 32px;
  font-size: 1.08rem;
  font-family: var(--font-display);
  animation: fadein-btm .35s cubic-bezier(.31,.99,.35,1);
}
@keyframes fadein-btm {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 2;
  margin-right: 10px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 11px;
}
.cookie-btn,
.cookie-banner button {
  font-family: var(--font-display);
  font-size: 1rem;
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  cursor: pointer;
  margin: 0;
  font-weight: 700;
  box-shadow: 0 2px 8px 0 rgba(140,68,20,.07);
  transition: background .17s, color .14s;
}
.cookie-btn.accept {
  background: var(--primary);
  color: var(--secondary);
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: var(--accent-dark);
  color: var(--secondary);
}
.cookie-btn.reject {
  background: #fffaf3;
  color: var(--primary);
  border: 1.1px solid var(--primary);
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: var(--primary);
  color: var(--secondary);
}
.cookie-btn.settings {
  background: var(--accent);
  color: var(--secondary);
}
.cookie-btn.settings:hover {
  background: var(--accent-dark);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,80,64,0.28);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein-btm .4s cubic-bezier(.45,0,.21,1);
}
.cookie-modal-content {
  background: #fffaf3;
  border-radius: var(--radius-lg);
  box-shadow: 0 3px 28px 0 rgba(32,80,64,0.14);
  padding: 26px 32px 32px 32px;
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: fadein-btm .21s cubic-bezier(.34,0,.35,1);
}
.cookie-modal-content h3 {
  font-size: 1.14rem;
  margin-bottom: 6px;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 1.06rem;
  font-weight: 500;
}
.cookie-modal-content input[type="checkbox"] {
  accent-color: var(--primary);
  width: 22px; height: 22px;
  border-radius: 4px;
  border: 2px solid var(--accent);
  margin-right: 8px;
}
.cookie-modal-content .close-modal {
  position: absolute;
  top: 12px; right: 20px;
  background: none;
  border: none;
  font-size: 1.72rem;
  color: var(--accent-dark);
  cursor: pointer;
  line-height: 1;
  transition: color .16s;
}
.cookie-modal-content .close-modal:hover {
  color: var(--primary);
}

/**************************************/
/* MISC RETRO ELEMENTS - PATTERNS */
/**************************************/
section, .tipbox-section{
  position: relative;
}
section:after,.tipbox-section:after {
  content: "";
  position: absolute;
  left: -14px; bottom: -14px;
  width: 70px; height: 50px;
  background-image: repeating-linear-gradient(45deg, #ecd8b2 0px, #ecd8b2 10px, #a47551 12px, #ecd8b2 16px);
  opacity: 0.13;
  border-radius: 9px;
  pointer-events: none;
  z-index: 1;
}

/**************************************/
/* RETRO ACCENTS (underlines, lines) */
/**************************************/
h2:after {
  content: "\2015\2015";
  display: inline-block;
  margin-left: 18px;
  color: var(--accent);
  font-size: 1.3rem;
}

/**************************************/
/* FLEX ITEM REQUIREMENTS */
/**************************************/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/**************************************/
/* RESPONSIVE MOBILE FIRST */
/**************************************/
@media (max-width: 1020px) {
  .footer-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav {
    flex-wrap: wrap;
    gap: 16px;
  }
  .features-grid, .services-cards, .workshop-grid {
    justify-content: flex-start;
  }
}
@media (max-width: 900px) {
  .features-grid, .services-cards, .workshop-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .callout-section, .tip-box {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .branding {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 7px;
  }
  nav.main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  section, .callout-section, .tipbox-section {
    padding: 25px 7px;
    margin-bottom: 38px;
  }
  .content-wrapper, .text-section {
    gap: 14px;
  }
  .container {
    padding: 0 6px;
  }
  .features-grid, .card-container, .content-grid, .services-cards, .workshop-grid {
    flex-direction: column;
    gap: 19px;
  }
  .hero .content-wrapper {
    padding: 0 2px;
  }
  .testimonial-card {
    padding: 14px 10px 15px 14px;
    max-width: 100%;
  }
  .footer-section {
    padding: 23px 0 17px 0;
    gap: 15px;
  }
  .cookie-banner {
    flex-direction: column;
    left: 8px; right: 8px;
    bottom: 8px;
    padding: 16px 8px 13px 12px;
    border-radius: var(--radius-md);
  }
  .cookie-modal-content {
    padding: 16px 7px 16px 14px;
    max-width: 98vw;
  }
  .testimonial-card p {
    font-size: 1.05rem;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  h1{
    font-size:1.42rem;
  }
  h2{
    font-size:1.18rem;
  }
  .branding img {
    height:36px;
  }
}

/**************************************/
/* FOCUS STATES - a11y */
/**************************************/
a:focus, button:focus, input:focus, .cta-btn:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  z-index: 3;
}
