/* RESET & BASES */
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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #232628;
  color: #F7F5E9;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}
a {
  color: #B7A065;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F7F5E9;
  text-decoration: underline;
}

ul, ol {
  margin-left: 1.2em;
}

/* BASE FLEX CONTAINERS */
.container {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(34, 38, 39, 0.92);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.14);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: #282c2e;
  border: 1.5px solid #3d4346;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(23,27,29,0.14);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(35,92,59,0.14), 0 2px 18px rgba(183,160,101,0.08);
  transform: translateY(-2px) scale(1.025);
}

.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F7F5E9;
  color: #222;
  border-radius: 14px;
  border: 1.5px solid #B7A065;
  box-shadow: 0 4px 24px rgba(55,92,59,0.09);
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
  min-width: 0;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(55,92,59,0.16);
  transform: translateY(-2px) scale(1.015);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADERS & TYPOGRAPHY */
h1, .h1 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.75rem;
  color: #B7A065;
  letter-spacing: 0.015em;
  margin-bottom: 16px;
}
h2, .h2 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #F7F5E9;
  margin-bottom: 12px;
}
h3, .h3 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #B7A065;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
h4, .h4 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #F7F5E9;
  margin-bottom: 8px;
}
p, li, ul, ol, blockquote {
  font-size: 1rem;
  color: #F7F5E9;
  line-height: 1.7;
}
strong {
  font-weight: 700;
  color: #B7A065;
}

blockquote {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  border-left: 4px solid #B7A065;
  background: #282c2e;
  color: #B7A065;
  margin: 12px 0;
  padding: 18px 20px 18px 25px;
  border-radius: 5px;
  font-style: italic;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* NAVIGATION */
header {
  background: #222629;
  border-bottom: 2px solid #282c2e;
  z-index: 60;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 6px 0;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #F7F5E9;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
nav a:focus, nav a:hover {
  color: #B7A065;
  border-bottom: 2px solid #B7A065;
}
nav .cta-primary {
  margin-left: 14px;
}

.cta-primary {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  display: inline-block;
  background: #375C3B;
  color: #F7F5E9 !important;
  border-radius: 8px;
  border: 1.5px solid #B7A065;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 12px 26px;
  box-shadow: 0 2px 12px rgba(119,136,153,0.07);
  transition: background 0.15s, color 0.15s, box-shadow 0.17s;
  cursor: pointer;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #B7A065;
  color: #222 !important;
  box-shadow: 0 4px 22px 0 rgba(183,160,101,0.18);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: #B7A065;
  font-size: 2rem;
  display: none;
  cursor: pointer;
  border-radius: 8px;
  padding: 6px 14px;
  margin-left: 16px;
  transition: background 0.17s, color 0.17s, box-shadow 0.19s;
  z-index: 120;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #232628;
  color: #F7F5E9;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(30,31,33,0.98);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  padding: 36px 26px 16px 32px;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 4px 0 32px 4px rgba(23,27,29,0.14);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #B7A065;
  font-size: 2.2rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 13px;
  margin-right: 3px;
  transition: color 0.18s, background 0.17s;
  border-radius: 8px;
}
.mobile-menu-close:hover,.mobile-menu-close:focus { color: #375C3B; background: #232628; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  color: #F7F5E9;
  text-transform: uppercase;
  padding: 13px 0 11px 0;
  font-weight: 600;
  border-bottom: 1.5px solid #333;
  transition: color 0.17s, background 0.17s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #B7A065;
  background: #222629;
}

/* HERO STYLES */
.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  background: linear-gradient(75deg, #202324 71%, #375C3B 120%);
  padding: 34px 24px 44px 24px;
  border-radius: 18px;
  box-shadow: 0 6px 40px 0 rgba(183,160,101,0.10);
}
.hero .cta-primary {
  margin-top: 20px;
}

/* SERVICE LIST & CARDS */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-item {
  background: #232628;
  border-radius: 11px;
  box-shadow: 0 1px 8px rgba(55,92,59,0.13);
  padding: 24px 20px 19px 20px;
  flex: 1 1 270px;
  min-width: 240px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1.3px solid #2a2e31;
  transition: box-shadow 0.17s, border 0.18s, transform 0.2s;
  margin-bottom: 20px;
}
.service-item:hover {
  border-color: #B7A065;
  box-shadow: 0 8px 28px rgba(183,160,101,0.14);
  transform: translateY(-2px) scale(1.02);
}
.service-item h3 {
  color: #B7A065;
  margin-bottom: 4px;
  font-size: 1.17rem;
  font-weight: 600;
}
.service-item p {
  color: #F7F5E9;
  font-size: 1rem;
  margin-bottom: 10px;
}
.service-price {
  background: #B7A065;
  color: #222;
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.07rem;
  margin-top: auto;
  box-shadow: 0 1px 2px rgba(119,136,153,0.08);
}

/* PRICING TABLE */
.pricing-table {
  background: #232628;
  border-radius: 12px;
  border: 1.5px solid #2a2e31;
  box-shadow: 0 2px 12px rgba(183,160,101,0.10);
  padding: 20px 28px 14px 28px;
  margin-bottom: 20px;
}
.pricing-table h2 {
  color: #B7A065;
  margin-bottom: 12px;
  font-size: 1.23rem;
}
.pricing-table ul {
  list-style: disc inside;
  color: #F7F5E9;
  padding-left: 6px;
  margin-bottom: 6px;
}


/* FOOTER */
footer {
  background: #232628;
  border-top: 2px solid #2a2e31;
  padding-top: 30px;
  padding-bottom: 24px;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.footer-columns > div {
  flex: 1 1 240px;
  min-width: 200px;
}
.footer-columns nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-columns nav a {
  font-size: 0.98rem;
  color: #B7A065;
  text-transform: none;
  border: none;
  padding: 0;
}
.footer-columns nav a:hover,
.footer-columns nav a:focus {
  color: #F7F5E9;
  background: none;
  border: none;
}
footer ul {
  list-style: none;
  margin-top: 8px;
  padding: 0;
}
footer li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #F7F5E9;
  margin-bottom: 8px;
}
footer h4 {
  margin-bottom: 8px;
}
footer img {
  margin-right: 5px;
}

/* CONTACT SECTION GRID */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.address-details,
.open-hours,
.map-snippet,
.phone-email {
  background: #282c2e;
  border: 1.3px solid #2a2e31;
  border-radius: 10px;
  padding: 18px 18px 8px 18px;
  flex: 1 1 210px;
  min-width: 200px;
  color: #F7F5E9;
  margin-bottom: 20px;
}
.address-details h2, .open-hours h2, .map-snippet h2, .phone-email h2 {
  color: #B7A065;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.phone-email a {
  color: #B7A065;
  word-break: break-all;
  text-decoration: underline;
  font-weight: 600;
}

/* PROJECT LIST */
.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.project-highlight {
  background: #232628;
  border: 1px solid #375C3B;
  border-radius: 10px;
  box-shadow: 0 1px 18px rgba(55,92,59,0.09);
  padding: 22px 17px 18px 17px;
  min-width: 240px;
  flex: 1 1 300px;
}
.project-highlight h2 {
  color: #B7A065;
  font-size: 1.13rem;
  margin-bottom: 7px;
}
.project-highlight p {
  color: #F7F5E9;
}

/* SOLUTION OVERVIEWS */
.solution-overviews ul,
.styling-ideas ul,
.color-schemes ul {
  list-style: disc;
  padding-left: 16px;
  margin-bottom: 7px;
}

/* BEFORE/AFTER */
.before-after {
  background: #282c2e;
  border: 1.3px solid #3d4346;
  border-radius: 12px;
  box-shadow: 0 1px 5px rgba(183,160,101,0.06);
  padding: 18px 18px 13px 18px;
  margin-bottom: 20px;
}

/* GENERAL FLEX ADJUSTMENTS */
@media (max-width: 1100px) {
  .footer-columns {gap:16px;}
  .footer-columns > div {min-width:150px;}
}
@media (max-width: 960px) {
  .container {padding: 0 10px;}
}
@media (max-width: 900px) {
  .footer-columns {flex-direction: column; gap: 28px;}
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 768px) {
  .content-wrapper, .hero, .service-list, .project-list, .card-container, .content-grid, .text-image-section, .footer-columns, .contact-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px !important;
  }
  .hero {
    padding: 24px 12px 28px 12px;
    font-size: 1rem;
  }
  .section {
    padding: 26px 7px;
    margin-bottom: 42px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    flex-direction: row;
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
  nav { display: flex !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* SMALL DEVICES FONTS */
@media (max-width: 560px) {
  h1, .h1 { font-size: 1.6rem; }
  h2, .h2 { font-size: 1.18rem; }
  .cta-primary { font-size: 1rem; padding: 10px 19px; }
}

/* BUTTONS & INTERACTIVE */
button {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  background: #232628;
  color: #F7F5E9;
  border: 1.5px solid #2a2e31;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.16s, color 0.17s, box-shadow 0.17s;
  outline: none;
}
button:focus, button:hover {
  background: #375C3B;
  color: #B7A065;
}

/* FORMS */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 7px;
  border: 1.3px solid #3d4346;
  padding: 10px 12px;
  background: #282c2e;
  color: #F7F5E9;
  margin-bottom: 12px;
  transition: border-color 0.17s, box-shadow 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #B7A065;
  box-shadow: 0 1px 6px rgba(55,92,59,0.13);
  outline: none;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #232628;
  color: #F7F5E9;
  box-shadow: 0 -2px 18px rgba(34,38,41,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 3000;
  padding: 19px 22px 19px 22px;
  transition: transform 0.3s cubic-bezier(.77,0,.18,1);
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 11px;
}
.cookie-banner button {
  background: #375C3B;
  color: #F7F5E9;
  border-radius: 7px;
  font-size: 1rem;
  border: 1.5px solid #2a2e31;
  padding: 8px 24px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.16s, color 0.17s, box-shadow 0.17s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #B7A065;
  color: #232628;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left:0; right:0; top:0; bottom:0;
  background: rgba(34,38,41,0.86);
  z-index: 3100;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.34s;
}
@keyframes fadeIn {from{opacity:0;}to{opacity:1;}}
.cookie-modal {
  background: #272B2D;
  color: #F7F5E9;
  border-radius: 14px;
  box-shadow: 0 8px 40px 0 rgba(23,27,29,0.23);
  padding: 37px 29px 19px 29px;
  min-width: 270px;
  max-width: 97vw;
  width: 440px;
  position: relative;
  z-index: 3200;
  display: flex;
  flex-direction: column;
  gap: 23px;
  animation: fadeIn 0.33s;
}
.cookie-modal h4 {
  color: #B7A065;
  font-size: 1.13rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
}
.cookie-modal .category-label {
  font-weight: 600;
}
.cookie-modal .toggle-switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
}
.cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #3d4346;
  border-radius: 24px;
  transition: background 0.15s;
}
.cookie-modal .toggle-switch input:checked + .slider {
  background-color: #B7A065;
}
.cookie-modal .slider:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #F7F5E9;
  transition: transform 0.19s;
}
.cookie-modal .toggle-switch input:checked + .slider:before {
  transform: translateX(16px);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 17px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #B7A065;
  cursor: pointer;
  transition: color 0.19s;
  border-radius: 7px;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  color: #375C3B;
  background: #222629;
}

/* ANIMATIONS */
@media (prefers-reduced-motion: no-preference) {
  .cta-primary, .card, .testimonial-card, .service-item, .cookie-banner, .cookie-modal {
    transition: box-shadow 0.19s, background 0.21s, border 0.19s, color 0.19s, transform 0.18s;
  }
}

/* Accessibility - Hide visually but not from screen reader */
.sr-only {
  position: absolute;
  width: 1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* METALLIC ACCENTS */
hr, .metal-hr {
  border: 0;
  border-top: 2px solid #B7A065;
  margin: 18px 0;
  box-shadow: 0 1px 0 #7a744e;
}

/* CUSTOM FONT IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600;700&display=swap');

