/* RESET & BASELINE */
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;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #262C2A;
  color: #F2ECE1;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  background-image:
    repeating-linear-gradient(135deg, rgba(142,153,154,0.06) 0, rgba(142,153,154,0.06) 2px, transparent 2px, transparent 24px),
    linear-gradient(180deg, #232926 0%, #2A332F 100%);
  background-blend-mode: overlay;
}
section, header, footer, nav, main {
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #8FB96B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B9E283;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  color: #F2ECE1;
  letter-spacing: 0.012em;
  margin-bottom: 12px;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-top: 10px; }
h3 { font-size: 1.35rem; margin-top: 18px; }
h4, h5, h6 { font-size: 1.1rem; margin-top: 16px; }
p, li, address { font-size: 1rem; }
strong { color: #8FB96B; font-weight: 700; }
em { font-style: italic; opacity: .92; }

@media (min-width: 600px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.55rem; }
  p, li, address { font-size: 1.08rem; }
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #232926;
  box-shadow: 0 2px 16px 0 rgba(40,54,42,0.13);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 24px;
  min-height: 80px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 0;
  color: #E8EDDB;
  border-bottom: 2px solid transparent;
  transition: border 0.18s, color 0.18s;
  letter-spacing: 0.04em;
}
header nav a:hover, header nav a:focus, header nav a.active {
  color: #A0C17B;
  border-bottom: 2px solid #8FB96B;
}
header img[alt='Timber Roam'] {
  height: 46px;
  width: auto;
}

@media (max-width: 900px) {
  header .container {
    gap: 18px;
    padding: 13px 16px 13px 16px;
  }
  header nav {
    gap: 14px;
  }
}

/* BUTTONS */
.btn, button, .mobile-menu-toggle, .mobile-menu-close {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.18s, color 0.15s, outline 0.15s;
  outline: none;
  min-width: 48px;
  min-height: 44px;
  user-select: none;
}
.btn.primary {
  background: linear-gradient(90deg,#37523B 70%,#5B6D5E 100%);
  color: #F2ECE1;
  box-shadow: 0 3px 12px 0 rgba(30,40,36,0.11);
  border: 1.8px solid #8FB96B;
  text-shadow: 0 1px 2px rgba(22,28,25,0.13);
}
.btn.primary:hover, .btn.primary:focus {
  background: #8FB96B;
  color: #1E291A;
  border-color: #C9E2A5;
  box-shadow: 0 4px 18px rgba(100, 140, 98, 0.19);
}
.btn.secondary {
  background: #313937;
  color: #F2ECE1;
  border: 1.8px solid #8FB96B;
}
.btn.secondary:hover, .btn.secondary:focus {
  background: #8FB96B;
  color: #232926;
}
button {
  background: #2a2f2c;
  color: #F2ECE1;
}
button:active {
  background: #232926;
}
.btn:active, button:active {
  box-shadow: 0 1px 3px rgba(0,0,0,0.10);
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: flex;
  background: #37523B;
  color: #F2ECE1;
  border-radius: 7px;
  border: 1.5px solid #8FB96B;
  font-size: 2rem;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  z-index: 250;
  box-shadow: 0 3px 10px rgba(56,66,60,0.08);
  transition: background 0.18s, color 0.18s, border 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #8FB96B;
  color: #232926;
  border-color: #B9E283;
}
@media (min-width: 1001px) {
  .mobile-menu-toggle { display: none; }
}
@media (max-width: 1000px) {
  header nav {
    display: none;
  }
  .btn.primary {
    display: none;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(36,38,38,0.97);
  backdrop-filter: blur(2px);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.56,.15,.23,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.1rem;
  background: #8FB96B;
  color: #232926;
  border-radius: 7px;
  border: none;
  margin: 24px 28px 18px 0;
  padding: 6px 18px 6px 18px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
  z-index: 999;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #37523B;
  color: #F2ECE1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
  margin-right: 46px;
}
.mobile-nav a {
  color: #F2ECE1;
  font-size: 1.45rem;
  font-family: 'Open Sans', Arial, sans-serif;
  padding: 12px 0;
  transition: color 0.1s, border 0.1s;
  border-bottom: 2px solid transparent;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #8FB96B;
  border-bottom: 2px solid #8FB96B;
}
@media (min-width: 1001px) {
  .mobile-menu { display: none !important; }
}
@media (max-width: 600px) {
  .mobile-nav { margin-right: 24px; }
}

/* BREADCRUMBS (if needed for other pages) */
.breadcrumbs {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
  font-size: 0.95rem;
  color: #C5C9B5;
  align-items: center;
}
.breadcrumbs a { color: #8FB96B; }
.breadcrumbs a:hover, .breadcrumbs a:focus { text-decoration: underline; color: #B9E283; }

/* HERO SECTION */
.hero {
  background: linear-gradient(150deg, #313B38 60%, #232926 100%);
  box-shadow: 0 4px 38px rgba(34,38,32,0.23);
  min-height: 320px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #383E3B;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 300px;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  padding: 52px 0 44px 0;
  text-align: center;
}
.hero h1 {
  color: #F2ECE1;
  text-shadow: 0 2px 24px rgba(54,69,57,0.14);
}
.hero p {
  color: #B9E283;
  max-width: 540px;
  margin-bottom: 12px;
}
.hero .btn.primary {
  margin-top: 8px;
}

/* FLEX LAYOUT COMPONENTS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 28px;
}
.card {
  background: #272D2A;
  border: 1.5px solid #3F493F;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(54,62,55,0.13);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  transition: box-shadow .18s, border-color .18s, background .16s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card:hover, .card:focus-within {
  border-color: #8FB96B;
  box-shadow: 0 8px 36px rgba(120,170,69,0.13);
  background: #313B38;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
}

/* FEATURE GRID & ITEMS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #292E2B;
  border-radius: 10px;
  border: 1px solid #595F51;
  padding: 26px 20px 20px 20px;
  min-width: 210px;
  max-width: 325px;
  flex: 1 1 220px;
  box-shadow: 0 2px 18px rgba(55,62,54,0.13);
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border-color 0.15s, background 0.16s;
}
.feature:hover, .feature:focus-within {
  background: #313B38;
  border-color: #8FB96B;
  box-shadow: 0 8px 34px rgba(141,217,128,0.11);
}
.feature img {
  height: 42px;
  width: 42px;
  filter: grayscale(30%) contrast(1.15) brightness(.96) drop-shadow(1px 2px 2px #1820190d);
  margin-bottom: 2px;
}
.feature h3 {
  margin: 0 0 4px 0;
  font-size: 1.14rem;
  color: #C9E2A5;
  letter-spacing: 0.013em;
  font-weight: 700;
}
.feature p {
  color: #F2ECE1;
}

/* CTA SECTION DESIGN */
.cta {
  background: linear-gradient(110deg,#232926 60%,#37523B 100%);
  border-radius: 16px;
  box-shadow: 0 6px 34px rgba(54,69,57,0.08);
  margin: 25px 0 65px 0;
}
.cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 36px 0;
}
.cta h2 { color: #B9E283; }
.cta .btn.primary { margin-top: 5px; }

/* GENERAL CONTENT WRAPPERS */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service {
  background: #272D2A;
  border-radius: 9px;
  border: 1px solid #454F49;
  box-shadow: 0 2px 18px rgba(41,56,44,0.10);
  flex: 1 1 260px;
  min-width: 210px;
  max-width: 340px;
  padding: 32px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.16s, border-color 0.16s, box-shadow 0.15s;
}
.service:hover, .service:focus-within {
  background: #313B38;
  border-color: #8FB96B;
  box-shadow: 0 6px 30px rgba(120,170,98,0.12);
}
.service h2 {
  font-size: 1.3rem;
  color: #C9E2A5;
  margin-bottom: 6px;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #ECEDEF;
  color: #232926;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(54,62,56,0.11);
  margin-bottom: 20px;
  border-left: 8px solid #8FB96B;
  transition: box-shadow 0.16s, border-color 0.16s, background 0.14s;
  max-width: 540px;
}
.testimonial-card p {
  color: #232926;
  font-size: 1.16rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}
.testimonial-meta {
  color: #4F594C;
  font-size: 1.04rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 36px rgba(141,185,128,0.10);
  border-left-color: #B9E283;
  background: #F8FAF3;
}

/* FOOTER */
footer {
  background: #222624;
  color: #C5C9B5;
  border-top: 2px solid #4A5643;
  padding: 36px 0 24px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a {
  color: #A0C17B;
  font-size: 1rem;
  transition: color 0.15s;
  margin-bottom: 3px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F2ECE1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.96rem;
}
.footer-contact img {
  height: 16px;
  width: 16px;
  margin-right: 4px;
  margin-bottom: -2px;
  vertical-align: middle;
}
.footer-logo img {
  height: 56px;
  width: auto;
}
@media (max-width: 900px) {
  footer .container{
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-logo {
    margin-top: 16px;
  }
}

/* FORMS (FOR FUTURE USE) */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  border: 1.5px solid #8FB96B;
  background: #272D2A;
  color: #F2ECE1;
  padding: 12px;
  outline: none;
  margin-bottom: 12px;
  transition: border 0.15s, box-shadow 0.14s;
}
input:focus, textarea:focus, select:focus {
  border-color: #B9E283;
  box-shadow: 0 2px 8px rgba(111,185,107,0.09);
}
label { font-size: 1rem; }

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: #2A332F;
  color: #F2ECE1;
  box-shadow: 0 -2px 22px rgba(44,54,46,0.20);
  padding: 24px 32px 18px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  border-top: 2px solid #8FB96B;
  font-size: 1rem;
  animation: cookie-in .6s cubic-bezier(.68,.09,.45,1.26);
}
@keyframes cookie-in {
  from { transform: translateY(90px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner strong {
  color: #8FB96B; font-weight: 700;
}
.cookie-actions {
  display: flex;
  gap: 16px;
  margin-top: 3px;
}
.cookie-banner .btn {
  padding: 9px 18px;
  font-size: 1rem;
  border-radius: 6px;
  min-width: 108px;
}
.cookie-banner .btn.primary {
  background: #8FB96B;
  color: #232926;
}
.cookie-banner .btn.primary:hover, .cookie-banner .btn.primary:focus {
  background: #B9E283;
}
.cookie-banner .btn.secondary {
  background: #232926;
  color: #F2ECE1;
  border: 2px solid #8FB96B;
}
.cookie-banner .btn.secondary:hover, .cookie-banner .btn.secondary:focus {
  background: #8FB96B;
  color: #232926;
}
.cookie-banner a { text-decoration: underline; color: #8FB96B; }
.cookie-banner a:hover { color: #B9E283; }

/* COOKIE PREFERENCES MODAL */
#cookie-modal {
  display: none;
  position: fixed;
  z-index: 10001;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44,54,46,0.83);
  align-items: center;
  justify-content: center;
  transition: opacity .22s;
}
#cookie-modal.active { display: flex; }
.cookie-modal-content {
  background: #212624;
  color: #F2ECE1;
  border-radius: 18px;
  padding: 38px 34px 24px 34px;
  box-shadow: 0 6px 42px rgba(41,85,52,0.28);
  min-width: 310px;
  max-width: 96vw;
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  animation: modal-in .48s cubic-bezier(.68,.09,.45,1.26);
}
@keyframes modal-in {
  from { transform: translateY(80px) scale(0.96); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal-content h2 {
  color: #8FB96B;
  margin-bottom: 2px;
  font-size: 1.3rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px 0 0 0;
  gap: 16px;
}
.cookie-category label {
  font-size: 1rem;
  color: #E8EDDB;
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: #8FB96B;
  border: 2px solid #8FB96B;
  position: relative;
  cursor: pointer;
}
.cookie-toggle[data-disabled='true'] {
  opacity: 0.71;
  background: #595F51;
  cursor: not-allowed;
}
.cookie-toggle-switch {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transition: left .19s;
  background: #232926;
  box-shadow: 0 0 6px rgba(24,33,25,0.11);
}
.cookie-toggle[data-checked='true'] .cookie-toggle-switch {
  left: 22px;
  background: #B9E283;
}
.cookie-modal-footer {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 19px;
  right: 22px;
  background: none;
  color: #8FB96B;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  transition: color 0.14s;
  z-index: 11000;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #B9E283;
  outline: none;
}

/* RESPONSIVE LAYOUT */
@media (max-width: 768px) {
  .container { padding-left: 11px; padding-right: 11px; }
  .section { padding: 32px 6px; margin-bottom: 46px; }
  .hero .container { padding: 0 6px; }
  .content-wrapper, .feature-grid, .service-list, .card-container {
    flex-direction: column !important;
    gap: 18px;
    align-items: stretch !important;
  }
  .feature, .service, .card {
    min-width: 0;
    max-width: 100%;
    padding: 22px 12px 16px 12px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 14px 12px;
  }
  .cta .content-wrapper {
    padding: 23px 2px;
  }
  footer .container {
    padding: 0 9px;
  }
}

/* UTILITIES */
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.no-gap { gap: 0!important; }
.text-center { text-align: center!important; }

/* SHADOWS (for industrial metallic effect) */
.feature, .service, .card, .testimonial-card {
  box-shadow: 0 3px 16px rgba(110,120,120,0.09), 0 1.5px 0px #384338;
}

/* ADDITIONAL EFFECTS */
.card, .feature, .service, .btn, .testimonial-card {
  transition: box-shadow .15s, border-color .15s, background .13s, color .13s;
}
.card:active,.feature:active,.service:active,.btn:active {
  box-shadow: 0 1px 6px rgba(110,120,120,0.11);
}

/* LIST STYLES */
ul, ol {
  margin-left: 1rem;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
  color: #F2ECE1;
  line-height: 1.6;
}
ul li:before {
  content: '';
  background: #8FB96B;
  border-radius: 50%;
  width: 7px; height: 7px;
  display: inline-block;
  position: absolute;
  left: 0; top: 9px;
}
@media (max-width: 768px) {
  ul, ol { margin-left: .6rem; }
  ul li, ol li { padding-left: 13px; }
  ul li:before { width: 6px; height: 6px; top: 9px; }
}

ol li {
  counter-increment: custom;
}
ol {
  counter-reset: custom;
}
ol li:before {
  content: counter(custom) '.';
  color: #8FB96B;
  font-weight: bold;
  position: absolute;
  left: 0.1em;
  top: 0;
}

/* ADDRESS STYLE */
address {
  font-style: normal;
  color: #F2ECE1;
  margin-bottom: 14px;
}
address a { color: #8FB96B; }

/* ACCESSIBILITY ENHANCEMENTS */
:focus {
  outline: 2px solid #8FB96B;
  outline-offset: 2px;
}
::-webkit-input-placeholder { color: #BBBFAA; }
::-moz-placeholder { color: #BBBFAA; }
:-ms-input-placeholder { color: #BBBFAA; }
::placeholder { color: #BBBFAA; }

/* PRINT IMPROVEMENTS */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  main { padding: 0 !important; margin: 0 !important; }
  body { color: #000; background: #fff; }
}

/* VISUAL HIERARCHY & COLOR CONTRAST */
h1, h2, h3, h4 { text-shadow: 0 2px 24px rgba(54,69,57,0.08); }
.section, .content-wrapper, .card, .feature, .service, .testimonial-card {
  margin-bottom: 20px;
}

/* Z-INDEX LAYERING */
header { z-index: 100; }
.mobile-menu, .mobile-menu.open { z-index: 900; }
.cookie-banner { z-index: 9999; }
#cookie-modal, #cookie-modal.active { z-index: 10001; }

/* INDUSTRIAL MODERN EXTRAS */
body, section, .feature, .card, .service {
  background-blend-mode: multiply, normal;
}
.feature, .card, .service {
  border-left: 4px solid #8FB96B;
}
.feature:hover, .service:hover, .card:hover {
  border-left: 4px solid #B9E283;
}

/* FONT IMPORTS (ASSUMED TO BE ADDED IN HTML HEAD) */
/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Open+Sans:ital,wght@0,400;0,600;1,400;1,700&display=swap'); */

/* END OF CSS */
