/* 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,
main, 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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  line-height: 1.6;
  background: #18181B;
  color: #F4F6FB;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #F4F6FB;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin-bottom: 20px;
}
h2, .h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1.75rem;
  color: #A38152;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h3, .h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: #F4F6FB;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
h4, h5, h6 {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: #F4F6FB;
}
p, ul, ol, dl, address {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #E6E6E6;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 8px;
}
dt {
  font-weight: 700;
  color: #F4F6FB;
  margin-top: 16px;
}
dd {
  margin-left: 0;
  margin-bottom: 16px;
}
a {
  color: #A38152;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E6E6E6;
  text-decoration: none;
}
strong, b {
  color: #F4F6FB;
  font-weight: 600;
}
em, i {
  font-style: italic;
}
blockquote {
  color: #1C1D22;
  background: #F4F6FB;
  border-left: 4px solid #A38152;
  padding: 16px 24px;
  margin: 0 0 16px 0;
  font-style: italic;
  font-size: 1.05rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(20,20,26,0.08);
}

/* LAYOUT & CONTAINERS */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 32px 8px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 16px;
  }
}
/* Card container/flex layouts */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #222227;
  border: 1px solid #2A2A2F;
  border-radius: 12px;
  box-shadow: 0 3px 16px rgba(28,29,34,0.12);
  padding: 28px 24px;
  color: #F4F6FB;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover, .card:focus-visible {
  border-color: #A38152;
  box-shadow: 0 8px 24px rgba(163,129,82,0.10), 0 2px 8px rgba(28,29,34,0.15);
  z-index: 3;
}
.content-grid, .feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-grid > div, .service-list > div {
  background: #222227;
  border-radius: 10px;
  box-shadow: 0 1.5px 6px rgba(28,29,34,0.10);
  border: 1px solid #292929;
  padding: 28px 22px 22px 22px;
  flex: 1 1 232px;
  min-width: 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.feature-grid > div:hover, .service-list > div:hover {
  border-color: #A38152;
  box-shadow: 0 6px 22px rgba(163,129,82,0.07),0 1px 2px rgba(28,29,34,0.13);
  z-index:2;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .content-grid, .feature-grid, .service-list, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* TESTIMONIALS & CARDS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F4F6FB;
  border-radius: 8px;
  border-left: 5px solid #A38152;
  color: #222227;
  margin-bottom: 20px;
  box-shadow: 0 1px 8px rgba(28,29,34,0.10);
  transition: box-shadow 0.17s, border-color 0.17s;
}
.testimonial-card blockquote {
  color: #18181B;
  background: transparent;
  border: none;
  margin: 0;
  padding: 0 8px 0 0;
  font-size: 1.03rem;
  line-height: 1.5;
}
.testimonial-card p {
  font-size: 0.93rem;
  color: #35363A;
  margin: 0;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(163,129,82,0.13);
  border-color: #1C1D22;
}
/* .feature-item */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* List for text-sections */
.text-section ul {
  list-style-type: disc;
  margin-left: 24px;
}

/* BUTTONS & CTA */
.cta-btn, button, input[type="submit"], .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  color: #fff;
  background: #A38152;
  border: none;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(28,29,34,0.09);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.15s, color 0.2s, box-shadow 0.17s;
  text-decoration: none;
  outline: none;
  margin-top: 4px;
}
.cta-btn:active, button:active, input[type="submit"]:active {
  transform: translateY(2px);
}
.cta-btn:hover, .cta-btn:focus, button:hover, button:focus, input[type="submit"]:hover {
  background: #F4F6FB;
  color: #1C1D22;
  box-shadow: 0 6px 26px rgba(186,164,117,0.13);
}
button:disabled, input:disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* FORMS */
form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
label {
  font-size: 1rem;
  color: #A38152;
  font-weight: 500;
  margin-bottom: 2px;
  letter-spacing: 0.03em;
}
input[type="text"], input[type="email"], select, textarea {
  background: #23232A;
  border: 1.5px solid #353535;
  color: #F4F6FB;
  font-size: 1rem;
  padding: 12px 10px;
  border-radius: 5px;
  transition: border-color 0.19s, box-shadow 0.13s;
  outline: none;
  margin-bottom: 2px;
  font-family: 'Roboto', Arial, sans-serif;
}
input:focus, select:focus, textarea:focus {
  border-color: #A38152;
  box-shadow: 0 0 0 2px rgba(163,129,82,0.11);
}
select {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="gray" height="12" viewBox="0 0 24 24" width="12" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.6em center;
  background-size: 16px 16px;
}
textarea {
  resize: vertical;
  min-height: 88px;
}

/* NAVIGATION */
header {
  background: #1C1D22;
  box-shadow: 0 3px 12px rgba(28,29,34,0.11);
  z-index: 1001;
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  max-width: 1180px;
  margin: 0 auto;
}
.main-nav img {
  height: 38px;
  width: auto;
  margin-right: 14px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
}
.main-nav li {
  margin-bottom: 0;
}
.main-nav a {
  text-decoration: none;
  color: #F4F6FB;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 2px;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #A38152;
}
.main-nav .cta-btn {
  margin-left: 16px;
  background: #A38152;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(28,29,34,0.13);
  text-transform: none;
}

@media (max-width: 1000px) {
  .main-nav {
    padding: 18px 10px;
  }
  .main-nav ul {
    gap: 10px;
  }
}
@media (max-width: 856px) {
  .main-nav ul {
    display: none;
  }
  .main-nav .cta-btn {
    display: none;
  }
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 18px;
  z-index: 1021;
  background: #A38152;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 2rem;
  padding: 9px 16px;
  cursor: pointer;
  transition: background 0.21s;
  box-shadow: 0 1px 5px rgba(28,29,34,0.14);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #7F653A;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #1C1D22;
  z-index: 2000;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.72,0.03,0.26,1);
  box-shadow: 0 4px 24px rgba(22,22,26,0.27);
  display: flex;
  flex-direction: column;
  padding: 0 0 50px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #A38152;
  color: #F4F6FB;
  border: none;
  border-radius: 8px;
  font-size: 2.2rem;
  margin: 22px 22px 6px 0;
  cursor: pointer;
  transition: background 0.22s, color 0.23s;
  z-index: 2010;
  padding: 4px 16px 4px 12px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #7F653A;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  margin: 0 0 0 32px;
  padding: 0;
}
.mobile-nav a {
  color: #F4F6FB;
  text-decoration: none;
  font-size: 1.24rem;
  padding: 6px 0;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.23s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #A38152;
  text-decoration: underline;
}
@media (max-width: 856px) {
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 857px) {
  .mobile-menu {
    display: none !important;
  }
}

/* FOOTER */
footer {
  background: #18181B;
  border-top: 1.5px solid #262629;
  padding: 42px 0 20px 0;
}
.footer-nav, .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 14px;
}
.footer-nav a, .legal-links a {
  color: #A38152;
  font-size: 0.98rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.19s;
  margin-bottom: 0;
}
.footer-nav a:hover, .legal-links a:hover {
  color: #F4F6FB;
  text-decoration: underline;
}
.footer-contact {
  color: #E6E6E6;
  font-size: 0.96rem;
  margin-top: 8px;
}
.footer-contact a {
  color: #A38152;
  text-decoration: underline;
  transition: color 0.19s;
}
.footer-contact a:hover {
  color: #fff;
}
.footer-social {
  margin-top: 24px;
}
.footer-social img {
  height: 40px;
  width: auto;
  filter: grayscale(35%) brightness(1.2);
}
@media (max-width: 800px) {
  .footer-nav, .legal-links {
    flex-direction: column;
    gap: 7px;
  }
}
@media (max-width: 500px) {
  .footer-social {
    margin-top: 13px;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #23232A;
  color: #F4F6FB;
  box-shadow: 0 -4px 18px rgba(28,29,34,0.12);
  padding: 24px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 3000;
  align-items: center;
  font-size: 1.08rem;
  animation: slideUp 0.9s cubic-bezier(.5,1.7,.26,1.15);
}
@keyframes slideUp {
  from {transform: translateY(30px); opacity: 0;}
  to {transform: none; opacity: 1;}
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.cookie-banner button {
  font-size: 1rem;
  font-weight: 500;
  background: #A38152;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 24px;
  margin: 0;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #F4F6FB;
  color: #1C1D22;
}
.cookie-banner .cookie-settings-btn {
  background: #35353C;
  color: #F4F6FB;
  border: 1px solid #A38152;
  margin-left: 6px;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #232323;
  color: #A38152;
}
@media (max-width:630px) {
  .cookie-banner {
    font-size: 0.98rem;
    padding: 19px 7px 16px 8px;
  }
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 305px;
  max-width: 97vw;
  background: #222227;
  color: #F4F6FB;
  border: 1.5px solid #A38152;
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(28,29,34,0.24);
  z-index: 4000;
  transform: translate(-50%, -50%) scale(0.97);
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 38px 30px 26px 30px;
  animation: modalIn 0.37s cubic-bezier(.55,1.74,.25,1.08);
}
@keyframes modalIn {
  from {opacity: 0; transform: translate(-50%, -47%) scale(0.9);}
  to {opacity: 1; transform: translate(-50%, -50%) scale(0.97);}
}
.cookie-modal h2 {
  color: #A38152;
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}
.cookie-modal label {
  margin-right: 11px;
  color: #F4F6FB;
  font-size: 1.03rem;
}
.cookie-modal .modal-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-row {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-modal .toggle-switch {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 40px;
  height: 22px;
}
.toggle-switch input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-switch span {
  position: absolute;
  cursor: pointer;
  background: #29292D;
  border-radius: 11px;
  width: 38px;
  height: 20px;
  transition: background 0.15s;
}
.toggle-switch span:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  top: 2px;
  background: #F4F6FB;
  border: 1px solid #A38152;
  border-radius: 50%;
  transition: transform 0.18s, background 0.17s;
}
.toggle-switch input:checked + span {
  background: #A38152;
}
.toggle-switch input:checked + span:before {
  transform: translateX(16px);
  background: #fff;
}
.cookie-modal .modal-footer {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal button {
  padding: 7px 22px;
  font-size: 1rem;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 18px 8px 18px 12px;
    width: 97vw;
    min-width: unset;
  }
}

/* Utility & Misc */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section address {
  font-style: normal;
  color: #cacaca;
  font-size: 1rem;
}
ol {
  counter-reset: item;
}
ol > li {
  counter-increment: item;
  margin-bottom: 18px;
  padding-left: 2px;
}

/* Animations/microinteractions */
.card, .feature-grid > div, .service-list > div {
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.17s;
}
.card:hover, .feature-grid > div:hover, .service-list > div:hover {
  transform: translateY(-3px) scale(1.01);
}
.cta-btn:focus, button:focus {
  outline: 2px solid #A38152;
  outline-offset: 2px;
}

/* COLORS: Utility classes (only if needed in HTML) */
.bg-dark {
  background: #18181B !important;
}
.bg-secondary {
  background: #A38152 !important;
  color: #18181B !important;
}
.text-accent {
  color: #A38152 !important;
}
.text-light {
  color: #F4F6FB !important;
}
.text-dark {
  color: #18181B !important;
}

/* MEDIA QUERIES */
@media (max-width: 600px) {
  h1, .h1 { font-size: 1.5rem; }
  h2, .h2 { font-size: 1.1rem; }
  .container { padding: 0 3px; }
  .footer-nav, .legal-links { font-size: 0.92rem; }
  .cta-btn, button, input[type="submit"] { font-size: 0.98rem; padding: 9px 15px; }
}


/* INDUSTRIAL MODERN DECORATIVE EFFECTS*/
.card, .feature-grid > div, .service-list > div {
  border-radius: 10px;
  border: 1.5px solid #28282F;
  box-shadow: 0 3px 16px rgba(28,29,34,0.13), 0 1.5px 8px rgba(80, 80, 90, 0.05);
  background-clip: padding-box;
  position: relative;
  overflow: hidden;
}
.card:before, .feature-grid > div:before, .service-list > div:before {
  content: "";
  position: absolute;
  right: -24px;
  top: -12px;
  height: 45px;
  width: 90px;
  background: linear-gradient(120deg, rgba(163,129,82,0.08) 0%, rgba(180,180,200,0.07) 90%);
  border-radius: 18px;
  z-index: 0;
  pointer-events: none;
}

/* Hide accessibility outlines unless keyboard navigation */
:focus:not(:focus-visible) {
  outline: none;
}

/* PRINT STYLES (minimal) */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  body, .container { color: #18181B; background: #fff !important; }
}

/* END CSS */
