/* ===================================================
   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, menu, 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, 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 {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: #fff;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #191919;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  position: relative;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  background: transparent;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px dashed #262626;
  outline-offset: 2px;
}
img {
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 15px 16px;
}

/* ===================================================
   BRAND FONTS & HEADINGS
   =================================================== */
@import url('https://fonts.googleapis.com/css?family=Oswald:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;
  letter-spacing: 0.02em;
  line-height: 1.18;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.subheadline {
  font-size: 1.15rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #444;
  margin-bottom: 24px;
}

/* ===================================================
   LAYOUT CONTAINERS
   =================================================== */
.container {
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* ===================================================
   MAIN NAVIGATION & HEADER
   =================================================== */
header {
  background: #fff;
  border-bottom: 1px solid #ededed;
  padding-top: 0;
  padding-bottom: 0;
  z-index: 1110;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.main-nav a {
  color: #111;
  padding: 8px 8px;
  border-radius: 6px;
  position: relative;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a.active {
  background: #262626;
  color: #fff;
}
.main-nav .btn-primary {
  margin-left: 10px;
  padding: 10px 24px;
  background: #262626;
  color: #fff;
  border-radius: 20px;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 2px 8px rgba(30,30,33,0.06);
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  border: none;
}
.main-nav .btn-primary:hover, .main-nav .btn-primary:focus {
  background: #111;
  color: #fff;
  box-shadow: 0 6px 24px rgba(20,20,23,0.09);
}
nav.main-nav img {
  height: 36px;
  margin-right: 15px;
  vertical-align: middle;
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
  background: #1a1a1a;
  color: #fff;
  padding: 56px 0 64px 0;
  position: relative;
}
.hero .container {
  align-items: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
  max-width: 560px;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 8px 28px rgba(30,30,33,0.18);
}
.hero .subheadline {
  color: #e5e5e5;
}
.hero .btn-primary {
  background: #fff;
  color: #262626;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(30,30,33,0.11);
}
.hero .btn-primary:hover {
  background: #262626;
  color: #fff;
  border: 1px solid #fff;
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: #262626 !important;
  color: #fff !important;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 12px rgba(28,28,29,0.06);
  cursor: pointer;
  text-align: center;
  outline: none;
  margin: 10px 0 0 0;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #191919 !important;
  color: #fff;
  box-shadow: 0 4px 14px rgba(17,17,17,0.11);
}

.btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: #fff;
  color: #262626 !important;
  border: 1.5px solid #262626;
  border-radius: 30px;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(23,23,24,0.07);
  cursor: pointer;
  margin: 10px 0 0 0;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s, border 0.18s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #262626;
  color: #fff !important;
  border: 1.5px solid #111;
  box-shadow: 0 4px 12px rgba(23,23,24,0.15);
}

/* ===================================================
   FLEXBOX PATTERNS
   CRITICAL CLASSES FOR SPACING/ALIGNMENT
   =================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(39,39,41,0.07);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  transition: box-shadow 0.25s;
}
.card:hover {
  box-shadow: 0 10px 44px rgba(28,28,29,0.13);
}
.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: 20px;
  background: #f8f8f8;
  color: #191919;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(39,39,41,0.07);
  min-width: 260px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(24,24,24,0.10);
}
.testimonial-details {
  font-size: 0.98rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #222;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 10px;
}
.feature-grid > div {
  background: #f9f9f9;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(34,34,34,0.06);
  padding: 28px 22px 22px 22px;
  min-width: 215px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, background 0.18s;
}
.feature-grid > div:hover {
  background: #ececec;
  box-shadow: 0 6px 18px rgba(20,20,21,0.09);
}
.feature-grid img {
  height: 42px;
  margin-bottom: 10px;
}

/* ===================================================
   UTILITIES & TYPOGRAPHY
   =================================================== */
p, li, ul, ol {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #2a2a2a;
  font-size: 1rem;
  line-height: 1.7;
}
ul li strong, ol li strong {
  font-weight: bold;
  color: #191919;
}
strong {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #191919;
}
.text-section {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  padding-top: 10px;
  margin-bottom: 10px;
}
.service-list li {
  font-family: 'Roboto', Arial;
  background: #f4f4f4;
  border-radius: 14px;
  padding: 8px 20px;
  margin-bottom: 4px;
  color: #222;
}
.product-highlights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
}
.product-highlights li {
  background: #fff;
  border-left: 3px solid #262626;
  padding: 10px 16px;
  border-radius: 12px;
  margin-bottom: 2px;
  font-size: 0.98rem;
}

/* ===================================================
   TABLES (PRICES)
   =================================================== */
table {
  width: 100%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(33,33,35,0.07);
  margin-bottom: 20px;
  overflow: hidden;
}
tr {
  border-bottom: 1px solid #ededed;
}
th {
  background: #262626;
  color: #fff;
  border-bottom: 0;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.14rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
td {
  font-family: 'Roboto', Arial, sans-serif;
  color: #1e1e1e;
  background: #fafafa;
  font-size: 1rem;
}

/* ===================================================
   FOOTER
   =================================================== */
footer {
  background: #191919;
  color: #fff;
  font-size: 1rem;
  padding-top: 38px;
  padding-bottom: 42px;
  border-top: 1px solid #232323;
}
footer p {
  color: white;
}
.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 38px 28px;
  align-items: flex-start;
  justify-content: space-between;
}
.brand-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.brand-footer img {
  height: 34px;
  margin-bottom: 5px;
}
.brand-footer span {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  color: #fff;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-links a {
  color: #e5e5e5;
  font-size: 1rem;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  transition: color 0.17s;
}
.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #d5d5d5;
  font-size: 1rem;
}
.footer-contact a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.18s;
}
.footer-contact a:hover {
  color: #8D6E63;
}

/* ===================================================
   MOBILE BURGER MENU
   =================================================== */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  padding: 10px 14px;
  background: none;
  border: none;
  border-radius: 14px;
  color: #262626;
  cursor: pointer;
  margin-left: auto;
  z-index: 1232;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #ececec;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(34, 34, 34, 0.97);
  color: #fff;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.8,0,.24,1);
  box-shadow: 0 8px 64px rgba(17,17,17,0.21);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.3rem;
  background: none;
  border: none;
  color: #fff;
  align-self: flex-start;
  margin: 18px 0 0 24px;
  cursor: pointer;
  border-radius: 9px;
  padding: 6px 10px;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #262626;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 36px;
  width: calc(100vw - 72px);
  max-width: 90vw;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  padding: 17px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.16s;
}
.mobile-nav a:hover {
  background: #fff;
  color: #1a1a1a;
  text-decoration: none;
}

/* Hide desktop nav on mobile, show burger */
@media (max-width: 990px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===================================================
   RESPONSIVE DESIGN (MOBILE FIRST)
   =================================================== */
@media (max-width: 1300px) {
  .container {
    max-width: 95vw;
  }
}
@media (max-width: 950px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .feature-grid > div {
    flex: 1 1 240px;
    min-width: 180px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  .footer {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 0;
  }
  .section {
    padding: 30px 8px;
    margin-bottom: 40px;
  }
  .service-list, .product-highlights ul {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 570px) {
  .container {
    max-width: 100vw;
    padding-left: 6px;
    padding-right: 6px;
  }
  .hero {
    padding: 38px 0 36px 0;
  }
}

/* Flex directions for text-image sections */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ===============================
   TESTIMONIALS
   =============================== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* ===============================
   CARDS (generic, shop, gallery)
   =============================== */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* ===============================
   MICRO INTERACTIONS & EFFECTS
   =============================== */
.btn-primary, .btn-secondary, .main-nav a, .feature-grid > div, .card, .testimonial-card, .mobile-menu-toggle, .mobile-menu-close {
  transition: all 0.18s cubic-bezier(.6,0,.24,1);
}

/* ===============================
   COOKIE CONSENT BANNER & MODAL
   =============================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #222;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
  padding: 24px 12px 12px 12px;
  box-shadow: 0 -2px 24px rgba(34,34,36,0.12);
  z-index: 9999;
  font-size: 1rem;
  animation: cookie-slide-in 0.4s cubic-bezier(.79,.24,.22,.81);
}
@keyframes cookie-slide-in {
  from { transform: translateY(64px); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-banner button {
  margin: 2px 8px 0 0;
}
.cookie-btn {
  background: #fff;
  color: #262626;
  font-family: 'Oswald', Arial,sans-serif;
  font-weight: 700;
  padding: 10px 26px;
  margin-left: 8px;
  border: none;
  border-radius: 18px;
  font-size: 1rem;
  transition: background 0.16s, color 0.16s;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(50,50,51,0.10);
  outline: none;
}
.cookie-btn.primary {
  background: #262626;
  color: #fff;
}
.cookie-btn.primary:hover, .cookie-btn.primary:focus {
  background: #111;
}
.cookie-btn.secondary {
  background: #fff;
  color: #262626;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #e2e2e2;
}

.cookie-banner .cookie-link {
  color: #fafafa;
  text-decoration: underline;
  margin-left: 8px;
}
.cookie-banner .cookie-link:hover {
  color: #8D6E63;
}

.cookie-modal-backdrop {
  position: fixed;
  left: 0;top: 0;right: 0;bottom: 0;
  background: rgba(36,36,36,0.56);
  z-index: 10040;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.26s cubic-bezier(.79,.24,.22,.81);
}
@keyframes fadeIn {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal {
  background: #fff;
  color: #111;
  border-radius: 22px;
  box-shadow: 0 12px 46px rgba(40,40,43,0.19);
  padding: 34px 30px 28px 30px;
  min-width: 310px;
  max-width: 96vw;
  animation: cookie-modal-in 0.34s cubic-bezier(.79,.24,.22,.81);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 10100;
}
@keyframes cookie-modal-in {
  from { transform: scale(.91) translateY(36px); opacity: .4; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  color: #222;
}
.cookie-modal .close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #262626;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 6px;
  transition: background 0.13s;
}
.cookie-modal .close:hover, .cookie-modal .close:focus {
  background: #f0f0f0;
}
.cookie-preference-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 8px 0 16px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.03rem;
  padding: 10px 0;
}
.cookie-category input[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: #262626;
  margin-right: 8px;
}
.cookie-category .always-on {
  color: #262626;
  font-weight: bold;
  font-size: 0.97em;
  margin-left: 8px;
}

/* ===============================
   ACCENT & BRAND COLORS
   =============================== */
::-webkit-scrollbar {width: 9px; background: #fff;}
::-webkit-scrollbar-thumb {background: #dfdfdf; border-radius: 5px;}
::-webkit-scrollbar-thumb:hover {background: #bebebe;}

/* ===============================
   GENERAL SPACINGS
   =============================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section:last-child {
  margin-bottom: 0;
}

/* ===============================
   MISC
   =============================== */
input, textarea, select, button {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
}

/* hide cookie-modal by default, show via .open or [visible] */
.cookie-modal, .cookie-modal-backdrop {display: none;}
.cookie-modal.open, .cookie-modal-backdrop.open {display: flex;}

/*
  Ensure NO elements overlap, always enough space in flex layouts
*/
.card, .feature-grid > div, .testimonial-card, .content-wrapper, .section, .service-list li, .product-highlights li {
  margin-bottom: 20px;
}

/* ===============================
   PRINT (minimal)
   =============================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal, .cookie-modal-backdrop { display: none !important; }
  body { color: #111; background: #fff; }
  section, .section, .container { box-shadow: none !important; background: #fff !important; }
}
