/* ================================================== */
/* RESET & NORMALIZE */
/* ================================================== */
html {
  box-sizing: border-box;
  height: 100%;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  min-height: 100%;
  background: #fff;
  color: #2D2A32;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
input, button, textarea, select {
  font: inherit;
}
button {
  background: none;
  border: none;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}

/* ================================================== */
/* BRAND VARIABLES (with fallbacks)                   */
/* ================================================== */
:root {
  --color-primary: #2D2A32;
  --color-secondary: #A6744E;
  --color-accent: #F9F6ED;
  --color-background: #fff;
  --heading-font: 'Playfair Display', Georgia, serif;
  --body-font: 'Lato', Arial, Helvetica, sans-serif;
}

/* ================================================== */
/* TYPOGRAPHY                                         */
/* ================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.4rem; margin-bottom: 10px; }
h4 { font-size: 1.18rem; margin-bottom: 8px; }
p, ul, ol, address, li {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--color-primary);
}
strong, b { font-weight: 700; }

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.06rem;
  font-weight: 700;
  border-radius: 32px;
  padding: 12px 32px;
  min-width: 120px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
  box-shadow: 0 2px 8px rgba(45, 42, 50, 0.05);
  margin-top: 18px;
}
.cta-primary {
  background: var(--color-secondary);
  color: #fff;
  border: 1px solid var(--color-secondary);
}
.cta-primary:hover,
.cta-primary:focus {
  background: #ce9867;
  color: #fff;
  box-shadow: 0 4px 20px rgba(166, 116, 78, 0.13);
}
.cta-secondary {
  background: transparent;
  color: var(--color-secondary);
  border: 1.5px solid var(--color-secondary);
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 4px 20px rgba(166, 116, 78, 0.08);
}

/* Typography scaling for mobile */
@media (max-width: 600px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }
  p, ul, ol, address, li { font-size: 0.97rem; }
  .cta-primary, .cta-secondary { font-size: 0.97rem; padding: 11px 24px; }
}

/* ================================================== */
/* LAYOUT & CONTAINER                                 */
/* ================================================== */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.section, .about-preview, .about, .features,
.our-services, .testimonials, .location, .creative-labs,
.call-to-action, .workshops, .guides, .our-tours,
.contact-details, .privacy-policy, .gdpr-policy, .cookie-policy, .terms, .thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.hero {
  background: var(--color-accent);
  padding: 60px 20px 48px 20px;
  margin-bottom: 60px;
}

/* ================================================== */
/* FLEXBOX UTILITIES (MANDATORY SPACING & GAPS)        */
/* ================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px rgba(45,42,50,0.07);
  position: relative;
  padding: 28px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.17s, transform 0.17s;
}
.card:hover {
  box-shadow: 0 6px 30px rgba(45,42,50,0.11);
  transform: translateY(-3px) scale(1.013);
  z-index: 1;
}
.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;
  margin-bottom: 32px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px 16px 28px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(45,42,50,0.11);
  border-radius: 18px;
  margin-bottom: 20px;
  min-width: 0;
  max-width: 600px;
}
.testimonial-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 1rem;
  color: var(--color-primary);
  opacity: 0.78;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ================================================== */
/* FEATURES/GRID CARDS                                */
/* ================================================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 32px;
}
.feature {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(45,42,50,0.06);
  padding: 28px 24px;
  min-width: 265px;
  max-width: 340px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.14s, transform 0.14s;
}
.feature img {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}
.feature:hover {
  box-shadow: 0 6px 28px rgba(166, 116, 78, 0.12);
  transform: translateY(-2px) scale(1.015);
}

/* ================================================== */
/* USP & LISTS                                        */
/* ================================================== */
.usp-list,
.brand-values,
.service-list,
.tips-list {
  margin: 16px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
}
.usp-list li,
.brand-values li,
.service-list li,
.tips-list li {
  padding-left: 24px;
  position: relative;
  color: var(--color-primary);
}
.usp-list li::before,
.brand-values li::before,
.service-list li::before,
.tips-list li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-secondary);
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 7px;
}

/* ================================================== */
/* NAVIGATION (DESKTOP + MOBILE)                      */
/* ================================================== */
header {
  background: #fff;
  box-shadow: 0 1px 12px rgba(45,42,50,0.04);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1002;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 16px 0;
  user-select: none;
  justify-content: flex-start;
}
.desktop-nav a {
  font-family: var(--body-font);
  font-weight: 500;
  color: var(--color-primary);
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 5px;
  transition: color 0.18s, background 0.18s;
}
.desktop-nav a.cta-primary {
  margin-left: auto;
}
.desktop-nav a:hover:not(.cta-primary),
.desktop-nav a:focus:not(.cta-primary) {
  color: var(--color-secondary);
  background: var(--color-accent);
}
.desktop-nav img {
  width: 44px;
  height: auto;
  margin-right: 14px;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: none;
  color: var(--color-primary);
  border-radius: 8px;
  padding: 6px 18px 6px 8px;
  z-index: 1200;
  position: absolute;
  right: 18px;
  top: 12px;
  outline: none;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-accent);
  color: var(--color-secondary);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(249,246,237, 0.98);
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.5,0,.25,1);
  z-index: 2000;
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.5rem;
  margin: 20px 28px 12px 0;
  color: var(--color-secondary);
  background: none;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 40px 0 0 0;
  align-items: flex-start;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: var(--color-primary);
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 28px 14px 32px;
  border-radius: 8px;
  transition: background 0.14s, color 0.14s;
  width: 100%;
  min-width: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: #fff;
}
@media (max-width: 1020px) {
  .desktop-nav a { font-size: 0.98rem; }
  .desktop-nav img { width: 38px; }
}
@media (max-width: 900px) {
  .desktop-nav {
    gap: 13px;
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ================================================== */
/* RESPONSIVE LAYOUTS & FLEXBOX ADJUSTMENTS           */
/* ================================================== */
@media (max-width: 1024px) {
  .feature-grid,
  .card-container,
  .content-grid {
    gap: 15px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 97vw;
  }
  .feature-grid, .content-grid, .card-container {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 13px;
  }
  .feature {
    min-width: 220px;
    max-width: 100%;
    padding: 24px 12px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .section, .about-preview, .features,.about,
  .our-services, .testimonials, .location, .creative-labs,
  .call-to-action, .workshops, .guides, .our-tours,
  .contact-details, .privacy-policy, .gdpr-policy, .cookie-policy, .terms, .thank-you, .hero {
    padding: 26px 7px;
    margin-bottom: 34px;
  }
  .testimonials .content-wrapper, .footer-nav { gap: 8px; }
  .feature,
  .testimonial-card,
  .card {
    min-width: 0;
    padding: 14px 11px 14px 14px;
  }
  .usp-list,
  .brand-values,
  .service-list,
  .tips-list {
    gap: 9px;
  }
}
@media (max-width: 670px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-contact address {
    font-size: 0.97rem;
  }
}
@media (max-width: 500px) {
  .container { padding: 0 3vw; }
  .card, .testimonial-card, .feature {
    border-radius: 13px;
    box-shadow: 0 1px 7px rgba(45,42,50,0.07);
  }
}

/* ================================================== */
/* MAP/PLACEHOLDER                                    */
/* ================================================== */
.map-placeholder {
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 22px 18px;
  border-radius: 13px;
  margin: 14px 0 20px 0;
  font-size: 1.04rem;
  box-shadow: 0 1px 5px rgba(45,42,50,0.04);
}

/* ================================================== */
/* CONTACT DETAILS                                    */
/* ================================================== */
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 13px 0 0 0;
}
.contact-info-block div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--color-primary);
}
.contact-info-block img {
  width: 24px;
  height: 24px;
  opacity: 0.71;
}

/* ================================================== */
/* FOOTER                                             */
/* ================================================== */
footer {
  background: var(--color-accent);
  padding: 38px 0 1px 0;
  margin-top: 68px;
  box-shadow: 0 -3px 10px rgba(45,42,50,0.04);
}
footer .container {
  max-width: 1200px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: flex-start;
  align-items: center;
}
.footer-nav a {
  color: var(--color-primary);
  font-size: 0.97rem;
  padding: 4px 7px;
  opacity: 0.93;
  border-radius: 6px;
  transition: background 0.15s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-secondary);
  color: #fff;
  opacity: 1;
}
.footer-contact address {
  margin: 22px 0 0 0;
  font-size: 1.045rem;
  font-style: normal;
  color: var(--color-primary);
  line-height: 1.7;
}
.footer-contact a {
  color: var(--color-secondary);
  text-decoration: underline;
  transition: color 0.17s;
}
.footer-contact a:hover { color: var(--color-primary); }
@media (max-width: 700px) {
  .footer-nav { gap: 9px 9px; }
  .footer-contact address { font-size: 0.94rem; }
  .content-wrapper { padding-bottom: 17px; }
}

/* ================================================== */
/* SECTIONS: TESTIMONIALS, SPECIAL TEXT, CALLS         */
/* ================================================== */
.testimonials {
  background: var(--color-accent);
  border-radius: 20px;
}
.testimonial-card {
  background: #fff;
  border-left: 4px solid var(--color-secondary);
  box-shadow: 0 2px 14px rgba(45,42,50,0.10);
}

/* -------------------------------------------------- */
/* Utility Classes                                    */
/* -------------------------------------------------- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.align-center { align-items: center; }

/* ================================================== */
/* COOKIE CONSENT BANNER & MODAL                      */
/* ================================================== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 -4px 35px rgba(45,42,50,0.065);
  z-index: 30000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 18px;
  font-size: 1rem;
  flex-wrap: wrap;
  gap: 18px;
  transition: transform 0.3s, opacity 0.28s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-consent-banner .cookie-message {
  max-width: 450px;
  margin-right: 20px;
  font-size: 1rem;
  color: var(--color-primary);
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-consent-banner button {
  border-radius: 21px;
  font-size: 1rem;
  font-weight: 600;
  padding: 7px 18px;
  border: 1.2px solid var(--color-secondary);
  background: var(--color-accent);
  color: var(--color-secondary);
  transition: background 0.11s, color 0.13s;
}
.cookie-consent-banner button.accept {
  background: var(--color-secondary);
  color: #fff;
  border: 1.2px solid var(--color-secondary);
}
.cookie-consent-banner button.accept:hover,
.cookie-consent-banner button.accept:focus {
  background: #ce9867;
  border-color: #ce9867;
}
.cookie-consent-banner button.reject {
  background: #fff;
  color: var(--color-secondary);
  border: 1.2px solid var(--color-secondary);
}
.cookie-consent-banner button.reject:hover,
.cookie-consent-banner button.reject:focus {
  background: var(--color-accent);
}
.cookie-consent-banner button.settings {
  background: transparent;
  color: var(--color-primary);
  border: 1.2px solid var(--color-primary);
}
.cookie-consent-banner button.settings:hover,
.cookie-consent-banner button.settings:focus {
  background: var(--color-accent);
  color: var(--color-secondary);
}

@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 6vw;
    gap: 12px;
  }
  .cookie-consent-banner .cookie-message { margin-right: 0; }
  .cookie-consent-banner .cookie-buttons {
    gap: 10px;
    flex-direction: row;
  }
}

/* Cookie Modal Popup */
.cookie-modal {
  position: fixed;
  z-index: 40000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(45, 42, 50, 0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.29s;
  opacity: 1;
}
.cookie-modal.hide { opacity: 0; pointer-events: none; }
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 40px 28px 30px 28px;
  max-width: 410px;
  min-width: 0;
  box-shadow: 0 4px 30px rgba(45, 42, 50, 0.19);
  color: var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cookie-modal-content h2 {
  font-size: 1.23rem;
  margin-bottom: 10px;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 17px;
}
.cookie-modal-content .cookie-category label {
  font-size: 1.03rem;
  font-weight: 500;
  cursor: pointer;
}
.cookie-modal-content .cookie-category input[type=checkbox] {
  accent-color: var(--color-secondary);
  width: 18px;
  height: 18px;
}
.cookie-modal-content .save-cookie-btn {
  align-self: flex-end;
  margin-top: 12px;
  background: var(--color-secondary);
  color: #fff;
  border-radius: 21px;
  padding: 7px 22px;
  font-size: 1rem;
  border: 1.2px solid var(--color-secondary);
  transition: background 0.12s, color 0.13s;
}
.cookie-modal-content .save-cookie-btn:hover,
.cookie-modal-content .save-cookie-btn:focus {
  background: #ce9867;
  border-color: #ce9867;
}
.cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  font-size: 1.9rem;
  color: var(--color-secondary);
  background: none;
  border-radius: 7px;
  transition: background 0.14s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  background: var(--color-accent);
}

@media (max-width: 450px) {
  .cookie-modal-content { padding: 25px 7vw 15px 7vw; }
}

/* ================================================== */
/* ANIMATIONS/MICRO-INTERACTIONS                      */
/* ================================================== */
.cta-primary, .cta-secondary, .cookie-consent-banner button, .cookie-modal-content .save-cookie-btn {
  transition: background 0.18s, color 0.19s, box-shadow 0.17s, border 0.13s, transform 0.14s;
}
.card, .feature, .testimonial-card {
  transition: box-shadow 0.14s, transform 0.16s;
}
.card:hover, .feature:hover, .testimonial-card:hover {
  transform: scale(1.012);
  box-shadow: 0 7px 45px rgba(45,42,50,0.18);
  z-index: 2;
}
.mobile-menu, .cookie-modal {
  will-change: transform, opacity;
}

/* ================================================== */
/* MISC BRAND ACCENTS                                 */
/* ================================================== */
::selection {
  background: var(--color-secondary);
  color: #fff;
}
hr {
  border: none;
  border-bottom: 1px solid var(--color-accent);
  margin: 38px 0 38px 0;
}

/* END OF CSS */
