/* ==== 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;
  vertical-align: baseline;
  box-sizing: border-box;
  font-size: 100%;
  font: inherit;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #232728;
  color: #ECE9E2;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: #D1B18D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFF;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font: inherit;
  outline: none;
  border: none;
  background: none;
}
strong, b {
  font-weight: 700;
}

/* ==== BRAND COLORS ==== */
:root {
  --primary: #395646;
  --secondary: #D1B18D;
  --accent: #FFFFFF;
  --dark: #232728;
  --surface: #2c3232;
  --card: #232728;
  --text-main: #ECE9E2;
  --text-invert: #232728;
  --muted: #919ba1;
  --metal: #a59f92;
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', Georgia, serif;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.625rem; line-height: 1.12; }
h2 { font-size: 2rem; line-height: 1.14; }
h3 { font-size: 1.5rem; }
h4, h5, h6 { font-size: 1.25rem; }
p, ul, ol, li, span, label { font-size: 1rem; }

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.17rem; }
}

/* ==== CONTAINERS & SPACING ==== */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  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(--card);
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(35,39,40,0.13);
  padding: 28px 24px;
  color: var(--text-main);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 5px 24px 0 rgba(209,177,141,0.15), 0 2px 20px 0 #23272844;
  transform: translateY(-4px) scale(1.02);
}
.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: center;
  gap: 20px;
  padding: 20px 28px;
  background: #fff;
  color: var(--text-invert);
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 #23272822, 0 1px 6px 0 #39564633;
  margin-bottom: 20px;
  font-size: 1.08em;
  min-width: 240px;
  max-width: 500px;
  transition: box-shadow 0.2s;
  border-left: 4px solid var(--secondary);
}
.testimonial-card span {
  font-size: 0.98em;
  color: var(--primary);
  font-style: italic;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ==== HEADER & NAVIGATION ==== */
header {
  width: 100%;
  background: var(--dark);
  border-bottom: 1.5px solid var(--metal);
  position: sticky;
  top: 0;
  z-index: 900;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  gap: 24px;
}
.logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 6px;
  transition: color 0.15s, background 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent);
  background: #39564644;
}
.cta-btn.primary {
  background: var(--primary);
  color: var(--secondary);
  border-radius: 8px;
  padding: 12px 26px;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 1.5px 14px 0 #23272826;
  border: 2px solid var(--secondary);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
  margin-left: 12px;
  text-shadow: 0 1px 0 #23272899;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: var(--secondary);
  color: var(--dark);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.mobile-menu-toggle {
  display: none;
  background: var(--surface);
  color: var(--secondary);
  border-radius: 6px;
  font-size: 2rem;
  padding: 4px 14px;
  margin-left: 18px;
  transition: background 0.2s, color 0.2s;
  border: 2px solid var(--secondary);
  cursor: pointer;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* ==== MOBILE NAVIGATION ==== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #232728ee;
  z-index: 2000;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-end;
  transition: transform 0.35s cubic-bezier(.4,1.6,.6,1) 0s, opacity 0.2s;
  transform: translateX(100%);
  opacity: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
  animation: mobileMenuIn 0.45s cubic-bezier(.3,1.36,.58,1) 0s;
}
@keyframes mobileMenuIn {
  from { transform: translateX(100%); opacity:0; }
  to { transform: translateX(0); opacity:1; }
}
.mobile-menu-close {
  background: none;
  color: var(--secondary);
  font-size: 2rem;
  margin: 22px 18px 0 0;
  align-self: flex-end;
  cursor: pointer;
  border-radius: 8px;
  transition: color 0.15s, background 0.18s;
  border: 2px solid var(--secondary);
  padding: 2px 12px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--primary);
  background: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 32px 0 0 24px;
}
.mobile-nav a {
  color: #ECE9E2;
  font-size: 1.22rem;
  letter-spacing: 0.2px;
  border-radius: 6px;
  padding: 12px 10px;
  transition: background 0.13s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  text-decoration: none;
}

/* ==== HERO & SECTION STYLES ==== */
.hero {
  background: linear-gradient(94deg, #232728 55%, #395646 100%);
  box-shadow: 0 2px 22px 0 #0002;
  margin-bottom: 60px;
  padding: 54px 0 48px 0;
  width: 100%;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero h1 {
  color: var(--secondary);
  text-shadow: 0 4px 18px #23272833;
}
.hero p {
  color: var(--accent);
  max-width: 700px;
  margin-bottom: 22px;
}
.features, .services {
  background: var(--surface);
  border-radius: 18px;
  box-shadow: 0 1.5px 12px 0 #23272822, 0 2px 14px 0 #39564610;
  margin-bottom: 60px;
  padding: 40px 0;
}
.features ul, .services ul {
  list-style: disc inside;
  color: var(--secondary);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: 6px;
}
.features li, .services li {
  font-size: 1.08em;
  color: var(--secondary);
  padding-left: 0px;
  margin-bottom: 4px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
}
.features h2, .services h2 {
  color: var(--secondary);
}
/* Distinct CTA section */
.cta {
  background: linear-gradient(96deg, var(--primary) 78%, #232728 100%);
  color: var(--secondary);
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 #23272855;
  margin-bottom: 40px;
  padding: 44px 0 44px 0;
}
.cta .content-wrapper { align-items: flex-start; gap: 18px; }
.cta h2 { color: var(--secondary); }

/* Legal pages */
.legal {
  background: var(--surface);
  border-left: 6px solid var(--secondary);
  border-radius: 18px;
  margin-bottom: 40px;
  padding: 40px 22px;
  box-shadow: 0 1.5px 12px 0 #23272822;
}
.legal h1, .legal h2 {
  color: var(--secondary);
}
.legal a {
  color: var(--primary);
  text-decoration: underline;
}
.legal a:hover {
  color: var(--secondary);
  background: var(--primary);
}

/* Contact Section */
.contact .text-section ul {
  list-style: none;
  padding-left: 0;
  color: var(--secondary);
  font-size: 1.07em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact .text-section strong { color: var(--secondary); }
.contact a[href^='mailto'] {
  color: var(--secondary);
  text-decoration: underline;
}

/* Thank you page */
.thankyou {
  background: var(--primary);
  color: var(--secondary);
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 #23272855;
  text-align: center;
  margin: 60px auto;
  max-width: 500px;
  padding: 48px 22px 44px 22px;
}
.thankyou h1 { color: var(--secondary); }
.thankyou p { color: #FFF; margin-bottom: 18px; }
.thankyou .cta-btn.primary {
  margin-top: 18px;
  display: inline-block;
}

/* ==== FOOTER ==== */
footer {
  background: var(--dark);
  box-shadow: 0 -4px 16px 0 #00002222;
  padding: 32px 0 16px 0;
  color: var(--muted);
  font-size: 1rem;
  margin-top: 48px;
}
footer .container {
  align-items: center;
  flex-direction: column;
  gap: 16px;
}
footer img {
  margin-bottom: 10px;
  max-width: 70px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-bottom: 8px;
}
.footer-nav a {
  color: var(--muted);
  font-size: 0.97em;
  border-radius: 6px;
  padding: 4px 6px;
  transition: color 0.13s, background 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
  background: var(--primary);
  text-decoration: none;
}
footer p {
  color: #777;
  margin-top: 6px;
  font-size: 0.94em;
}

/* ==== BUTTONS GENERAL ==== */
button, .cta-btn {
  cursor: pointer;
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.12s;
}
button:disabled,
.cta-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ==== MICRO-INTERACTIONS/TRANSITIONS ==== */
.card, .testimonial-card, .cta-btn, .mobile-menu, .mobile-menu-toggle, .main-nav a, .footer-nav a {
  transition: all 0.18s cubic-bezier(.45, .96, .6, 1.2);
}

/* ==== RESPONSIVE BREAKPOINTS ==== */
@media (max-width: 1200px) {
  .container { max-width: 100%; }
  .content-wrapper { gap: 24px; }
}
@media (max-width: 860px) {
  .main-nav {
    gap: 12px;
  }
  .footer-nav {
    gap: 8px;
  }
  .container { padding: 0 10px; }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 5vw;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-btn.primary {
    padding: 10px 18px;
    font-size: 1rem;
    margin-left: 0px;
  }
  .content-wrapper, .features ul, .services ul {
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .testimonial-card {
    min-width: 180px;
    max-width: 100vw;
    padding: 18px 10px;
  }
  .hero {
    padding: 34px 0 28px 0;
  }
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .thankyou {
    margin: 32px 2vw;
    padding: 28px 8px 22px 8px;
  }
}
@media (max-width: 510px) {
  .container {
    padding: 0 2vw;
  }
  .section, .features, .services, .cta, .legal {
    padding: 14px 3vw;
  }
  .testimonial-card {
    padding: 12px 3vw;
  }
  .hero { padding: 18px 0 14px 0; }
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #232728fa;
  color: var(--secondary);
  padding: 20px 18px;
  box-shadow: 0 -8px 24px 0 #0007;
  align-items: center;
  justify-content: space-between;
  z-index: 5000;
  gap: 28px;
  font-size: 1.02em;
  border-top: 3px solid var(--secondary);
  animation: cookieSlideIn 0.42s cubic-bezier(.68,-0.55,.27,1.55);
  flex-direction: row;
}
@keyframes cookieSlideIn {
  from { transform: translateY(40px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner__text {
  flex: 2 1 60%;
  color: var(--secondary);
}
.cookie-banner__actions {
  flex: 1 1 auto;
  display: flex;
  gap: 18px;
}
.cookie-btn {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 6px;
  padding: 9px 18px;
  font-weight: 600;
  font-size: 1.04em;
  border: none;
  margin-right: 0px;
  transition: background 0.13s, color 0.13s, box-shadow 0.1s;
  box-shadow: 0 2px 8px 0 #23272818;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 4px 24px 0 #39564633;
}
.cookie-btn.settings {
  background: none;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  box-shadow: none;
  padding: 8px 16px;
  font-weight: 500;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 12px 4vw;
  }
  .cookie-banner__actions {
    gap: 10px;
  }
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #232728bb;
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: #232728;
  padding: 36px 26px 28px 26px;
  border-radius: 16px;
  min-width: 310px;
  max-width: 420px;
  box-shadow: 0 7px 32px 0 #23272866, 0 2px 14px 0 #39564622;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: modalIn 0.34s cubic-bezier(.3,1.14,.58,1.12);
}
@keyframes modalIn {
  from { transform: translateY(45px) scale(0.97); opacity:0; }
  to { transform: translateY(0) scale(1); opacity:1; }
}
.cookie-modal h2 {
  color: var(--primary);
  margin-bottom: 0;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 12px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category label {
  font-size: 1.06em;
  color: #232728;
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--primary);
  width: 22px; height: 22px;
  cursor: pointer;
}
.cookie-category input[disabled] {
  accent-color: #999;
  cursor: not-allowed;
}
.cookie-modal .cookie-btn {
  margin-top: 10px;
  width: 100%;
}
@media (max-width: 510px) {
  .cookie-modal {
    padding: 18px 5vw;
    min-width: 0;
    max-width: 92vw;
  }
}
/* ==== UTILITY CLASSES ==== */
.hide { display: none !important; }
.d-flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.gap-20 { gap: 20px !important; }
.gap-24 { gap: 24px !important; }
.align-center { align-items: center !important; }
.align-start { align-items: flex-start !important; }
.justify-between { justify-content: space-between !important; }
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }

/* ==== ACCESSIBILITY ==== */
:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* ==== INDUSTRIAL MODERN VISUALS ==== */
.section, .features, .services, .content-wrapper, .card, .testimonial-card, .legal {
  border-radius: 12px;
  box-shadow: 0 2px 18px 0 #23272822, 0 1px 8px 0 var(--metal)11;
  border: 1.5px solid #2c3232;
}
.card, .testimonial-card, .features, .services, .cta {
  border-left: 5px solid var(--secondary);
}
@media (max-width: 768px) {
  .section, .features, .services, .card, .legal, .cta, .testimonial-card {
    border-radius: 8px;
  }
}

/* ==== ICONS & ACCENTS ==== */
::-webkit-scrollbar {
  width: 9px;
  background: #232728;
}
::-webkit-scrollbar-thumb {
  background: #395646;
  border-radius: 6px;
}

/* ==== END OF STYLE.CSS ==== */
