/* ---- CSS 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, 
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #212628;
  color: #f3e9de;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ---- FONT IMPORTS ---- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --color-primary: #253031;
  --color-secondary: #8B5C2A;
  --color-accent: #F3E9DE;
  --color-bg: #212628;
  --color-bg-darker: #191c1d;
  --color-metal: #B0B4B8;
  --color-card-bg: #262B2D;
  --color-shadow: rgba(0,0,0,0.18);
  --color-header-bg: #232728;
  --color-testimonial-bg: #f3e9de;
  --color-testimonial-text: #222;
  --transition: 0.25s cubic-bezier(.45,.13,.48,1.07);
  --radius: 12px;
  --hover-shadow: 0 2px 12px rgba(43,39,30,0.20), 0 1.5px 2px rgba(52,43,20,0.07);
}

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-card-bg);
  border-radius: var(--radius);
  box-shadow: 0 6px 32px rgba(0,0,0,0.15);
  padding: 28px 24px;
  flex: 1 1 280px;
  min-width: 260px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover,
.card:focus-within {
  box-shadow: 0 12px 42px rgba(34,32,29,0.15), 0 1.5px 2px rgba(52,43,20,0.09);
  transform: translateY(-2px) scale(1.015);
}
.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;
  padding: 20px;
  margin-bottom: 20px;
  background: var(--color-testimonial-bg);
  color: var(--color-testimonial-text);
  border-radius: var(--radius);
  box-shadow: 0 3px 16px rgba(40,40,40,0.09);
  min-width: 240px;
  max-width: 520px;
  transition: box-shadow var(--transition), transform var(--transition);
  border-left: 4px solid var(--color-secondary);
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(44,32,12,0.18);
  transform: translateY(-3px) scale(1.01);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ---- HEADER ---- */
header {
  background: var(--color-header-bg);
  box-shadow: 0 1px 12px rgba(30, 20, 8, 0.066);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 28px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #f3e9de;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
  transition: color var(--transition);
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-secondary);
}
.btn-primary {
  background: var(--color-secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(60,47,30,0.12);
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  outline: none;
  margin-left: 18px;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #a67135;
  color: #fff;
  box-shadow: 0 6px 22px rgba(97,64,10,0.15);
  transform: translateY(-1.5px) scale(1.04);
}

.mobile-menu-toggle {
  display: none;
  font-size: 32px;
  background: transparent;
  color: #f3e9de;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
  margin-left: 16px;
  z-index: 1101;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: var(--color-secondary);
}

/* ---- MOBILE NAV ---- */
.mobile-menu {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-header-bg);
  padding-top: 24px;
  z-index: 1100;
  transform: translateX(100vw);
  transition: transform 0.35s cubic-bezier(.75,.02,.19,0.97);
  box-shadow: 0 0 32px rgba(16,14,8,0.13);
}
.mobile-menu.open {
  display: block;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--color-secondary);
  font-size: 32px;
  border: none;
  position: absolute;
  top: 24px;
  right: 32px;
  cursor: pointer;
  z-index: 1201;
  transition: color var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 34px;
  margin-top: 80px;
  padding: 0 44px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #f3e9de;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 18px 0;
  border-bottom: 1px solid #393c39;
  transition: color var(--transition), background var(--transition);
  border-radius: 8px;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
  background: #33352a;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 900px;
  }
}
@media (max-width: 840px) {
  header .container {
    gap: 10px;
  }
  .btn-primary { margin-left: 5px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding: 0 14px;
  }
}
@media (max-width: 480px) {
  .mobile-nav a { font-size: 17px; }
  .mobile-menu-close { right: 15px; top: 14px; font-size: 28px; }
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #f3e9de;
  letter-spacing: 1px;
  margin-bottom: 13px;
  line-height: 1.14;
}
h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-accent);
  text-shadow: 0 2px 10px rgba(40,39,34,0.08);
  margin-bottom: 18px;
}
h2 {
  font-size: 2.05rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 12px;
}
h3 {
  font-size: 1.18rem;
  font-weight: 600;
  color: #ddc296;
}
h4 {
  font-size: 1.12rem;
  font-weight: 500;
}
.lead {
  font-size: 1.2rem;
  font-weight: 400;
  color: #e1d0bc;
  margin-bottom: 20px;
  margin-top: 6px;
}
p {
  color: #ede5da;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 10px;
}
strong { 
  font-weight: 700; 
  color: var(--color-secondary);
}

/* --- BUTTONS, LINKS, HOVER --- */
a.btn-primary {
  display: inline-block;
  margin: 8px 0;
}
a:hover, a:focus {
  outline: none;
  color: var(--color-secondary);
}
.btn-primary:active {
  background: #7a4b1e;
}

/* ---- FEATURE, SERVICE, CATEGORY LISTS ---- */
.feature-list, .service-list, .category-list, .customization-options, .contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0 0 0;
  width: 100%;
  justify-content: flex-start;
}
.feature-list li,
.service-list li,
.category-list li,
.customization-options li {
  background: var(--color-card-bg);
  color: #eae0d1;
  border-radius: var(--radius);
  box-shadow: 0 4px 18px var(--color-shadow);
  padding: 30px 22px 24px 22px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  transition: box-shadow var(--transition), transform var(--transition);
  border-left: 3px solid var(--color-secondary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  min-height: 210px;
  margin-bottom: 20px;
}
.feature-list li:hover, .service-list li:hover, .category-list li:hover, .customization-options li:hover {
  box-shadow: 0 8px 32px rgba(50,44,33,0.14);
  transform: translateY(-3px) scale(1.022);
}
.feature-list img, .service-list img, .customization-options img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  filter: grayscale(20%) contrast(108%);
  margin-bottom: 7px;
}

/* ---- PROCESS STEPS ---- */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 8px;
}
.process-steps li {
  background: var(--color-card-bg);
  border-radius: var(--radius);
  padding: 26px 19px 18px 19px;
  flex: 1 1 205px;
  min-width: 210px;
  box-shadow: 0 5px 18px rgba(31,31,13,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-left: 3px solid var(--color-secondary);
  margin-bottom: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.process-steps li:hover {
  box-shadow: 0 14px 32px rgba(37,25,18,0.13);
  transform: translateY(-2px) scale(1.014);
}
.process-steps img {
  height: 36px;
  width: auto;
  margin-bottom: 8px;
}

/* ---- CONTACT INFO ---- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 10px;
}
.contact-info li {
  color: #d9c9ae;
  background: transparent;
  border-left: 4px solid var(--color-secondary);
  padding-left: 13px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}
.contact-info img {
  height: 22px;
  width: 22px;
}

/* ---- FOOTER ---- */
footer {
  background: #1a1d1f;
  font-size: 0.98rem;
  color: #b0b4b8;
  padding-top: 36px;
  padding-bottom: 36px;
  border-top: 2px solid #393427;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav, .footer-links {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a, .footer-links a {
  color: #b0b4b8;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 2px 0;
  font-size: 1.04em;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.footer-nav a:hover, .footer-links a:hover, .footer-nav a:focus, .footer-links a:focus {
  color: var(--color-secondary);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 340px;
}
.footer-contact p {
  color: #cec5b7;
  font-size: 0.98em;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 4px;
}
.footer-contact img {
  width: 20px;
  height: 20px;
}
.footer-logo {
  display: block;
  margin-top: 28px;
  margin-bottom: 0;
}
.footer-logo img {
  height: 44px;
  width: auto;
  filter: grayscale(12%) contrast(115%) brightness(0.97);
  display: block;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  footer .footer-logo {
    margin-left: 0;
  }
}
@media (max-width: 600px) {
  footer .container {
    flex-direction: column;
    gap: 12px;
    padding-bottom: 12px;
  }
}

/* ---- RESPONSIVE SECTIONS & FLEX ---- */
@media (max-width: 920px) {
  .feature-list li, .service-list li, .category-list li, .customization-options li, .process-steps li {
    flex: 1 1 180px;
    min-width: 160px;
    max-width: 320px;
    padding: 22px 13px 18px 15px;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 19px;
  }
  .feature-list, .service-list, .category-list, .customization-options, .process-steps {
    flex-direction: column;
    gap: 20px;
  }
  .feature-list li, .service-list li, .category-list li, .customization-options li, .process-steps li {
    min-width: unset;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonial-card {
    min-width: unset;
    max-width: 100%;
    gap: 12px;
  }
  section {
    padding: 36px 4px;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.27rem; }
  h3 { font-size: 1.04rem; }
}
@media (max-width: 410px) {
  h1 { font-size: 1.57rem; }
  h2 { font-size: 1.12rem; }
}

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

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #282c2e;
  color: #f3e9de;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 20px 8vw 24px 8vw;
  z-index: 2000;
  box-shadow: 0 -2px 26px rgba(17,14,3,0.17);
  font-size: 16px;
  animation: slideInCookie var(--transition) ease-in;
}
@keyframes slideInCookie {
  0% { transform: translateY(100%); opacity: 0.8; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 2 2 240px;
  color: #f3e9de;
}
.cookie-banner__actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  background: var(--color-secondary);
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 25px;
  border-radius: 9px;
  margin: 0 2px;
  cursor: pointer;
  box-shadow: 0 1.5px 7px rgba(60,47,30,0.11);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #a67135;
  color: #fff;
  box-shadow: 0 6px 20px rgba(97,64,10,0.13);
  outline: none;
}
.cookie-btn--secondary {
  background: #b0b4b8;
  color: #253031;
}
.cookie-btn--secondary:hover { background: #d6cfc7; color: #1a1d1f; }

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 2vw 15px 2vw;
    font-size: 14px;
  }
}

/* ---- COOKIE SETTINGS MODAL ---- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(28,27,21,0.82);
  z-index: 3001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  animation: fadeInCookieModal 0.36s cubic-bezier(.45,.13,.48,1.07);
}
@keyframes fadeInCookieModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #232728;
  color: #f3e9de;
  border-radius: 16px;
  max-width: 420px;
  width: 94vw;
  padding: 34px 28px 30px 28px;
  box-shadow: 0 16px 44px rgba(49,37,16,0.22);
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}
.cookie-modal h2 {
  color: var(--color-secondary);
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #262B2D;
  border-radius: 8px;
  padding: 14px 14px;
  margin-bottom: 9px;
  font-size: 1.05rem;
}
.cookie-modal .toggle-switch {
  position: relative;
  width: 46px;
  height: 26px;
  background: #b0b4b8;
  border-radius: 14px;
  transition: background 0.19s linear;
  cursor: pointer;
}
.cookie-modal .toggle-switch input {
  display: none;
}
.cookie-modal .toggle-slider {
  position: absolute;
  left: 4px;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--color-secondary);
  border-radius: 50%;
  transition: left 0.18s cubic-bezier(.45,.13,.48,1.07), background .2s;
}
.cookie-modal .toggle-switch.checked {
  background: var(--color-secondary);
}
.cookie-modal .toggle-switch.checked .toggle-slider {
  left: 24px;
  background: #b0b4b8;
}
.cookie-modal .cookie-category--disabled {
  opacity: .65;
  pointer-events: none;
}
.cookie-modal .cookie-category-label {
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  background: none;
  border: none;
  color: #aaa;
  font-size: 24px;
  cursor: pointer;
  transition: color var(--transition);
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--color-secondary);
}
.cookie-modal-actions {
  margin-top: 10px;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
@media (max-width: 540px) {
  .cookie-modal {
    padding: 20px 3vw 16px 3vw;
    max-width: 98vw;
    gap: 14px;
  }
}

/* ---- ANIMATIONS & MICRO-INTERACTIONS ---- */
.card,
.feature-list li,
.service-list li,
.category-list li,
.customization-options li,
.process-steps li,
.testimonial-card {
  transition: box-shadow .16s cubic-bezier(.43,.13,.30,1.09), transform .17s cubic-bezier(.42,.05,.49,1.09);
}

.btn-primary,
.cookie-btn {
  transition: background .15s cubic-bezier(.43,.13,.35,1.09), color .14s cubic-bezier(.43,.13,.35,1.09), box-shadow .15s;
}

/* END OF CSS */