/* --------------------------------------------------
   CSS RESET & BASE STYLES
-------------------------------------------------- */
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;
  background: transparent;
  box-sizing: border-box;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #232629;
  background: #F4F6F8;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #204056;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A06B19;
  outline: none;
}
ul, ol {
  margin-left: 1.5em;
  padding: 0;
}
li {
  margin-bottom: 0.5em;
}
button {
  font-family: inherit;
  font-size: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
:focus {
  outline: 2px solid #A06B19;
  outline-offset: 2px;
}

/* --------------------------------------------------
   BRAND COLORS, TYPOGRAPHY
-------------------------------------------------- */
:root {
  --clr-primary: #204056;
  --clr-secondary: #ffffff;
  --clr-bg: #F4F6F8;
  --clr-accent: #A06B19;
  --clr-gold-dark: #C8913D;
  --clr-dark: #222831;
  --clr-light: #ffffff;
  --clr-grey: #eaebed;
  --font-display: 'PT Serif', Georgia, serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* --------------------------------------------------
   LUXURY PREMIUM TYPOGRAPHY
-------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--clr-primary);
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.3rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
}

p, li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #232629;
}
strong {
  color: var(--clr-primary);
}

@media (min-width: 601px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.1rem; }
  h3 { font-size: 1.3rem; }
}

/* --------------------------------------------------
   CONTAINER & LAYOUT
-------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.section, .services-overview, .workshops-overview, .about-team, .values, .features, .testimonials, .faq-list, .faq-cta, .contact-data, .legal, .cta {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--clr-secondary);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(32,64,86,0.04), 0 2px 4px rgba(32,64,86,0.04);
}

.content-wrapper, .feature-grid, .testimonials-list, .service-list, .services-details, .content-grid, .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  align-items: flex-start;
}

/* Specific grid spacing requirements */
.card-container, .content-grid { gap: 20px; }
.card { margin-bottom: 20px; position: relative; }
.section { margin-bottom: 60px; padding: 40px 20px; }
.text-image-section, .feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }
.testimonial-card { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; padding: 20px; margin-bottom: 24px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; flex: 1 1 210px; min-width: 210px; background: var(--clr-bg); border-radius: 18px; box-shadow: 0 2px 12px rgba(160, 107, 25, 0.04); padding: 24px 18px 20px 18px; border: 1px solid #ebebeb; position: relative; }

@media (min-width: 769px) {
  .text-image-section {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
  .about-team .content-wrapper,
  .features .content-wrapper,
  .values .content-wrapper {
    flex-direction: row;
  }
  .feature-grid { flex-wrap: wrap; flex-direction: row; gap: 24px; }
  .service-list { flex-wrap: wrap; display: flex; flex-direction: row; gap: 24px; }
  .about .content-wrapper { flex-direction: row; }
}

/* --------------------------------------------------
   HEADER & NAVIGATION
-------------------------------------------------- */
header {
  background: var(--clr-secondary);
  box-shadow: 0 2px 18px rgba(32, 64, 86, 0.07);
  border-bottom: 1px solid #EAEBED;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 50;
}
.header-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}
.logo-link img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.main-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--clr-primary);
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s, color 0.18s;
  padding: 4px 2px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--clr-accent);
  border-bottom: 2px solid var(--clr-accent);
}

/* CTA-Button in header */
.cta.primary {
  font-family: var(--font-display);
  font-size: 1.06rem;
  color: var(--clr-secondary);
  background: var(--clr-accent);
  padding: 12px 28px;
  border: none;
  border-radius: 22px;
  box-shadow: 0 2px 12px rgba(160, 107, 25,0.08);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-left: 12px;
  transition: background 0.18s, box-shadow 0.19s, color 0.15s;
  outline: none;
  position: relative;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--clr-primary);
  color: var(--clr-accent);
  box-shadow: 0 4px 24px rgba(160, 107, 25, 0.13);
}

/* Header Hamburger Menu (hidden on desktop) */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--clr-primary);
  background: none;
  border: none;
  padding: 6px 10px;
  border-radius: 7px;
  margin: 0 0 0 14px;
  z-index: 101;
  transition: background 0.18s, color 0.15s, box-shadow 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: rgba(32,64,86,0.08);
  color: var(--clr-accent);
}
/* Hide burger on desktop */
@media (min-width: 1100px) {
  .mobile-menu-toggle { display: none; }
}

/* Hide mobile menu by default */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,64,86,0.96);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.86,0,.07,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  padding: 20px 24px 8px 16px;
  align-self: flex-end;
  background: none;
  border: none;
  transition: color 0.14s;
  z-index: 250;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--clr-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  width: 100%;
  padding: 36px 30px 0 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  border-left: 4px solid transparent;
  padding: 7px 0 7px 10px;
  transition: background 0.17s, border-color 0.17s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--clr-gold-dark);
  border-left: 4px solid var(--clr-gold-dark);
  background: rgba(255,255,255,0.08);
}
@media (min-width: 1100px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Hide main nav on mobile */
@media (max-width: 1099px) {
  .main-nav, .cta.primary {
    display: none;
  }
}

/* Show main nav and CTA on desktop */
@media (min-width: 1100px) {
  .main-nav, .cta.primary {
    display: flex;
  }
}

/* --------------------------------------------------
   HERO SECTIONS
-------------------------------------------------- */
.hero {
  background: linear-gradient(90deg, #F4F6F8 60%, #fff 100%);
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(32,64,86,0.05);
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 48px 0 32px 0;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.hero h1 {
  color: var(--clr-primary);
  margin-bottom: 8px;
  font-weight: 700;
}
.hero p {
  font-size: 1.22rem;
  color: #33495f;
  max-width: 700px;
}

@media (min-width: 769px) {
  .hero {
    padding: 72px 0 56px 0;
    margin-bottom: 74px;
  }
}

/* --------------------------------------------------
   FEATURE GRID
-------------------------------------------------- */
.feature-grid {
  flex-wrap: wrap;
  display: flex;
  justify-content: flex-start;
  gap: 24px;
}
.feature-item img {
  height: 48px;
  width: 48px;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 5px rgba(160,107,25,0.08));
}
.feature-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5em;
  color: var(--clr-primary);
}
.feature-item p {
  color: #4e5b66;
  font-size: 0.98rem;
}

/* --------------------------------------------------
   CARD & LISTING COMPONENTS
-------------------------------------------------- */
.card, .service-item, .service-block, .faq-item {
  background: var(--clr-secondary);
  border: 1px solid #ebebeb;
  border-radius: 18px;
  box-shadow: 0 1px 10px rgba(160,107,25,0.035);
  padding: 28px 20px;
  position: relative;
  transition: box-shadow 0.22s, border-color 0.21s, transform .17s;
  margin-bottom: 22px;
}
.card:hover, .service-item:hover, .service-block:hover, .faq-item:hover {
  box-shadow: 0 8px 28px rgba(32,64,86,0.09);
  border-color: var(--clr-accent);
  transform: translateY(-2px) scale(1.013);
}
/* Pricing highlight for service */
.service-price {
  display: inline-block;
  color: var(--clr-accent);
  font-weight: 700;
  font-size: 1.15rem;
  margin-top: 18px;
  font-family: var(--font-display);
}

/* Testimonials */
.testimonials-list { gap: 24px; }
.testimonial-card {
  background: #fff;
  border: 1px solid #dadada;
  border-radius: 16px;
  padding: 32px 24px 24px 24px;
  color: #262929;
  font-size: 1.12rem;
  box-shadow: 0 2px 18px rgba(32,64,86,0.08);
  max-width: 400px;
  min-width: 260px;
  flex: 1 1 260px;
  transition: box-shadow 0.23s, border-color 0.16s;
}
.testimonial-card p {
  margin-bottom: 16px;
  color: #262d38;
  line-height: 1.67;
}
.testimonial-card .author {
  color: var(--clr-accent);
  font-weight: 600;
  font-size: 0.96rem;
  font-style: italic;
  font-family: var(--font-display);
}

/* FAQ Styles */
.faq-item h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
  color: var(--clr-primary);
}
.faq-item p {
  font-size: 0.99rem;
}
.faq-list .content-wrapper {
  flex-direction: column;
}

/* Service Details Block */
.service-block {
  flex: 1 1 280px;
  min-width: 260px;
}
.services-details .content-wrapper {
  flex-wrap: wrap;
}

/* --------------------------------------------------
   CALL TO ACTION
-------------------------------------------------- */
.cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  text-align: left;
  background: var(--clr-bg);
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(160,107,25,0.05);
  padding: 40px 24px 40px 24px;
  margin-bottom: 60px;
}
.cta.primary, a.cta.primary {
  display: inline-block;
  margin-top: 22px;
}
.cta.secondary {
  background: var(--clr-primary);
  color: var(--clr-accent);
  font-family: var(--font-display);
  border: none;
  border-radius: 17px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.4px;
  padding: 11px 26px;
  transition: background 0.18s, color 0.15s;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--clr-gold-dark);
  color: var(--clr-light);
}

.cta-block {
  margin-top: 20px;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
footer {
  padding: 40px 0 20px 0;
  background: var(--clr-primary);
  box-shadow: 0 -1px 24px rgba(32,64,86,0.13);
  color: var(--clr-light);
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-logo img {
  height: 56px;
  margin-bottom: 2px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  font-size: 1rem;
  font-family: var(--font-body);
}
.footer-nav a {
  color: var(--clr-light);
  opacity: 0.90;
  font-weight: 500;
  padding: 2px 4px;
  transition: color 0.18s, opacity 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--clr-gold-dark);
  opacity: 1;
}
.footer-legal {
  font-size: 0.98rem;
  opacity: 0.93;
}

@media (min-width: 701px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 28px;
  }
}

/* --------------------------------------------------
   LEGAL TEXTS & TEXT-SECTIONS
-------------------------------------------------- */
.text-section {
  font-size: 1.02rem;
  color: #2f3842;
  line-height: 1.76;
  margin-bottom: 12px;
}
.legal {
  background: var(--clr-secondary);
  color: #232629;
  padding: 48px 0;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(32,64,86,0.04);
}
.legal h1, .legal h2 {
  color: var(--clr-primary);
}

/* --------------------------------------------------
   RESPONSIVE STYLES
-------------------------------------------------- */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .section, .services-overview, .workshops-overview, .about-team, .values, .features, .testimonials, .faq-list, .faq-cta, .contact-data, .legal, .cta {
    padding: 30px 7px 30px 7px;
    border-radius: 12px;
    margin-bottom: 36px;
  }
  .footer-content {
    gap: 10px;
  }
  .feature-grid, .testimonials-list, .service-list, .content-wrapper {
    flex-direction: column !important;
    gap: 16px !important;
  }
}

@media (max-width: 600px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.20rem; }
  h3 { font-size: 1rem; }
  .hero {
    padding: 32px 0 22px 0;
    margin-bottom: 38px;
  }
}

/* --------------------------------------------------
   MICRO-INTERACTIONS & TRANSITIONS
-------------------------------------------------- */
.card, .service-item, .feature-item, .testimonial-card, .faq-item {
  transition: box-shadow 0.17s, border-color 0.18s, transform .12s;
}
.cta, .cta.primary, .cta.secondary, a.cta {
  transition: background 0.19s, color 0.17s, box-shadow .22s;
}

/* --------------------------------------------------
   LUXURY GOLD ACCENTS
-------------------------------------------------- */
.feature-item::before, .service-item::before, .faq-item::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--clr-accent);
  border-radius: 2px;
  margin-bottom: 16px;
  opacity: 0.07;
}
.feature-item img {
  filter: drop-shadow(0 2px 5px rgba(160, 107, 25, 0.13));
}

/* --------------------------------------------------
   SCROLLBAR LUX TOUCH
-------------------------------------------------- */
::-webkit-scrollbar {
  width: 9px;
  background: var(--clr-bg);
}
::-webkit-scrollbar-thumb {
  background: #e0cec1;
  border-radius: 6px;
}

/* --------------------------------------------------
   COOKIE CONSENT BANNER (Fixed Bottom)
-------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: #fffbe9;
  border-top: 2px solid var(--clr-accent);
  box-shadow: 0 -2px 16px rgba(32,64,86,0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 12px;
  min-height: 70px;
  flex-wrap: wrap;
  gap: 30px;
  opacity: 1;
  transition: opacity .35s;
}
.cookie-banner.hide { opacity: 0; pointer-events: none; }
.cookie-banner .cookie-text {
  color: var(--clr-primary);
  font-size: 1rem;
  font-family: var(--font-body);
  max-width: 600px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 8px 22px;
  border-radius: 19px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.18s;
}
.cookie-banner .accept {
  background: var(--clr-accent);
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--clr-primary);
  color: var(--clr-accent);
}
.cookie-banner .reject {
  background: #e2e2da;
  color: var(--clr-primary);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #f0e7d0;
}
.cookie-banner .settings {
  background: transparent;
  border: 1.5px solid var(--clr-accent);
  color: var(--clr-accent);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--clr-accent);
  color: #fff;
}

/* Cookie Modal Popup Overlay */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3050;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(32,64,86,.42);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-overlay.hide { opacity: 0; pointer-events: none; }
.cookie-modal {
  background: #fff;
  padding: 38px 28px 26px 28px;
  border-radius: 18px;
  min-width: 310px;
  max-width: 95vw;
  box-shadow: 0 4px 40px rgba(32,64,86,0.14);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  animation: cookie-modal-in .37s cubic-bezier(.39,-0.09,.65,1.2);
}
@keyframes cookie-modal-in {
  from { opacity: 0; transform: translateY(60px) scale(0.91); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h3 {
  font-size: 1.23rem;
  color: var(--clr-primary);
  margin-bottom: 2px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-family: var(--font-body);
}
.cookie-modal .cookie-switch {
  width: 38px;
  height: 22px;
  background: #eee8dc;
  border-radius: 12px;
  position: relative;
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
}
.cookie-modal .cookie-switch input {
  display: none;
}
.cookie-modal .switch-slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #ded5c0;
  border-radius: 50%;
  transition: left 0.15s;
}
.cookie-modal .cookie-switch input:checked + .switch-slider {
  background: var(--clr-accent);
  left: 18px;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 22px;
  top: 16px;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #aaa;
  cursor: pointer;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: var(--clr-primary);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 14px;
}
.cookie-modal .cookie-modal-actions button {
  padding: 7px 20px;
  border-radius: 17px;
  font-size: 1rem;
  border: none;
  font-weight: 600;
}
.cookie-modal .save {
  background: var(--clr-accent);
  color: #fff;
}
.cookie-modal .save:hover, .cookie-modal .save:focus {
  background: var(--clr-primary);
  color: var(--clr-accent);
}

.cookie-modal .cancel {
  background: #e2e2da;
  color: var(--clr-primary);
}
.cookie-modal .cancel:hover, .cookie-modal .cancel:focus {
  background: #f0e7d0;
}


/* --------------------------------------------------
   UTILITY CLASSES
-------------------------------------------------- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }
.hide { display: none !important; }

/* Emphasize accent */
.accent {
  color: var(--clr-accent);
  font-weight: bold;
}

/* --------------------------------------------------
   END CSS
-------------------------------------------------- */
