/* -------------------- CSS 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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #24232A;
  color: #F3EEE7;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .01em;
  min-height: 100vh;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #A06D5C;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #F3EEE7;
  text-decoration: underline;
}
button, input, select, textarea {
  font-family: inherit;
  outline: none;
}

/* -------------------- GLOBAL VARIABLES -------------------- */
:root {
  --color-primary: #2E2D35;
  --color-secondary: #A06D5C;
  --color-accent: #F3EEE7;
  --color-background: #24232A;
  --color-surface: #35343C;
  --color-metal: #6E6B74;
  --color-link: #A06D5C;
  --color-link-hover: #b98974;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Lato', Arial, sans-serif;
  --font-industrial: 'Montserrat', 'Lato', Arial, sans-serif;
  --shadow-card: 0 3px 18px 0 rgba(34,34,34,0.11), 0 1.5px 5px 0 rgba(68,68,77,0.07);
  --radius-card: 12px;
  --radius-btn: 7px;
  --border-metal: 1.5px solid #44434A;
  --transition-main: all .2s cubic-bezier(.4,0,.2,1);
}

/* -------------------- TYPOGRAPHY -------------------- */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 24px;
  line-height: 1.12;
}
h2 {
  font-size: 2rem;
  margin-bottom: 22px;
  line-height: 1.2;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.3;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.4;
}
p, ul, ol {
  margin-bottom: 18px;
  font-size: 1rem;
  color: #E3DED5;
}
ul, ol {
  padding-left: 22px;
}
strong, b {
  color: #E2B7A8;
}
em {
  color: #C9B9AA;
  font-style: italic;
}
.subheadline {
  font-size: 1.15rem;
  color: #B5AFA6;
  margin: 0 0 18px 0;
  letter-spacing: .02em;
}
/* tagline highlight */
.tagline-highlight {
  background: #39363D;
  color: var(--color-accent);
  padding: 11px 26px;
  border-radius: var(--radius-card);
  margin-top: 20px;
  font-size: 1.13rem;
  font-family: var(--font-body);
  letter-spacing: .04em;
  border-left: 5px solid var(--color-secondary);
}

/* -------------------- LAYOUT STRUCTURE -------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  position: relative;
}
@media (max-width: 992px) {
  .section {
    padding: 30px 11px;
  }
}
/* Make sure at least 20px vertical space between content cards */
.card-container, .content-grid, .service-list, .service-categories-grid, .featured-posts-list, .price-list, .faq-block, .faq-shortlist {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .testimonial-card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: var(--color-accent);
  color: #222;
  padding: 20px 28px 20px 22px;
  border-radius: var(--radius-card);
  margin-bottom: 23px;
  box-shadow: 0 4px 18px 0 rgba(45,34,34,0.09);
  border-left: 5px solid var(--color-secondary);
  transition: transform 0.13s;
}
.testimonial-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 32px 0 rgba(45,34,34,0.21);
}
.testimonial-card strong {
  color: #624336;
  font-family: var(--font-industrial);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}
/* service list, featured posts, categories, price list, team etc. */
.service-list > div, .service-categories-grid > div, .featured-posts-list > ul > li, .price-list > li {
  background: #232227;
  color: #F3EEE7;
  border-radius: var(--radius-card);
  padding: 23px 20px 17px 20px;
  box-shadow: var(--shadow-card);
  border: var(--border-metal);
  font-family: var(--font-body);
  flex: 1 0 240px;
  min-width: 220px;
  margin-bottom: 12px;
}
.service-list > div h3,
.service-categories-grid > div h3 {
  color: var(--color-secondary);
}
.service-categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* GRID FLEX RESPONSIVE */
@media (max-width: 900px) {
  .service-categories-grid {
    gap: 12px;
  }
  .service-categories-grid > div {
    min-width: 180px;
    flex-basis: 40%;
  }
}
@media (max-width: 600px) {
  .service-categories-grid {
    flex-direction: column;
    gap: 18px;
  }
  .service-categories-grid > div {
    min-width: unset;
    width: 100%;
    flex-basis: 100%;
  }
}

/* Content grid/list utilities */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* -------------------- HEADER & NAVIGATION -------------------- */
header {
  background: var(--color-primary);
  border-bottom: 2.5px solid #413E47;
  box-shadow: 0 2px 14px 0 rgba(26,25,29,.04);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding-top: 12px;
  padding-bottom: 12px;
}
nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
nav > a img {
  height: 48px;
  margin-right: 30px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
}
nav ul li {
  display: flex;
  align-items: center;
}
nav ul li a {
  color: #F3EEE7;
  font-weight: 500;
  font-family: var(--font-industrial);
  padding: 7px 14px;
  border-radius: var(--radius-btn);
  font-size: 1rem;
  letter-spacing: .03em;
  transition: var(--transition-main);
}
nav ul li a:hover,
nav ul li a:focus {
  background: #42404a;
  color: var(--color-secondary);
}
nav ul li a.cta-primary {
  background: var(--color-secondary);
  color: #fff !important;
  font-family: var(--font-display);
  padding: 10px 23px;
  border-radius: var(--radius-btn);
  font-size: 1.06rem;
  text-shadow: 0 2px 7px #58413527;
  margin-left: 12px;
  transition: var(--transition-main);
  box-shadow: 0 6px 16px -6px #6E6B7434, 0 1.5px 8px -3px #34232426;
}
nav ul li a.cta-primary:hover {
  background: #774636;
  color: #fff!important;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 28px -12px #6E6B7444;
}

/* HAMBURGER MENU (MOBILE) */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  color: var(--color-accent);
  border: none;
  font-size: 2.2rem;
  padding: 4px 12px;
  cursor: pointer;
  z-index: 101;
  transition: color .2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: var(--color-secondary);
}
.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(46,45,53,0.99);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform .36s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--color-accent);
  font-size: 2.1rem;
  position: absolute;
  right: 28px;
  top: 22px;
  cursor: pointer;
  font-weight: bold;
  z-index: 201;
  transition: color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-secondary);
}
.mobile-nav {
  margin-top: 95px;
  display: flex;
  flex-direction: column;
  gap: 29px;
  align-items: center;
}
.mobile-nav a {
  color: var(--color-accent);
  font-family: var(--font-industrial);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 12px 18px;
  border-radius: var(--radius-btn);
  text-align: center;
  width: 90vw;
  max-width: 330px;
  transition: background .17s, color .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #514d56;
  color: var(--color-secondary);
}
@media (max-width: 960px) {
  nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 961px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* -------------------- MAIN CONTENT BLOCKS -------------------- */
main {
  margin-top: 0;
  padding-bottom: 90px;
  width: 100%;
  min-height: 450px;
}
.text-section {
  margin-bottom: 28px;
}
.content-wrapper {
  margin: 0 auto 10px auto;
  max-width: 860px;
  background: none;
}

/* -------- TABLES, LISTS, MAP, FAQS, ETC. -------- */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: #24232A;
  border-radius: var(--radius-card);
  overflow: hidden;
}
thead tr {
  background: var(--color-primary);
}
th, td {
  text-align: left;
  padding: 13px;
  border-bottom: 1px solid #39363D;
  font-size: 1rem;
}
th {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 700;
}
tbody tr {
  background: #322f39;
}
tbody tr:nth-child(even) {
  background: #39363D;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.map-placeholder {
  background: #39363D;
  color: #CFCAD1;
  border-radius: var(--radius-card);
  padding: 18px 14px;
  font-family: var(--font-body);
  margin-top: 10px;
  margin-bottom: 18px;
}
.faq-block, .faq-shortlist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #22212A;
  border-radius: var(--radius-card);
  padding: 18px 20px 13px 20px;
  border: var(--border-metal);
  margin-top: 12px;
}
.faq-block h4, .faq-shortlist h3 {
  color: var(--color-secondary);
}
.price-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
}
.price-list > li {
  background: #28272d;
  border-left: 5px solid var(--color-secondary);
  color: #e5ded7;
  padding: 17px 13px 14px 17px;
  border-radius: var(--radius-card);
  font-family: var(--font-industrial);
  margin-bottom: 11px;
}

/* -------------------- BUTTONS & CTA -------------------- */
.cta-primary,
.cta-secondary,
button,
input[type='submit'] {
  display: inline-block;
  font-family: var(--font-industrial);
  border-radius: var(--radius-btn);
  border: none;
  padding: 13px 28px;
  margin-top: 10px;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: .05em;
  transition: background .17s, color .17s, box-shadow .19s, transform .13s;
  box-shadow: 0 2px 14px 0 rgba(68, 68, 77, 0.10), 0 1.5px 6px 0 rgba(34,34,34,0.14);
  position: relative;
}
.cta-primary {
  background: var(--color-secondary);
  color: #fff;
  border: var(--border-metal);
}
.cta-primary:hover, .cta-primary:focus {
  background: #6D4737;
  color: #fff;
  box-shadow: 0 7px 26px 0 #34232422;
  transform: translateY(-2px) scale(1.03);
}
.cta-secondary {
  background: #24232A;
  color: var(--color-accent);
  border: 2px solid var(--color-secondary);
  margin-left: 10px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-secondary);
  color: #fff;
}
button:active, .cta-primary:active {
  transform: scale(0.98);
  box-shadow: 0 1.5px 4px 0 #54444421;
}

/* Secondary (e.g., Cookie buttons) */
.btn, .cookie-btn {
  display: inline-block;
  border-radius: var(--radius-btn);
  font-family: var(--font-industrial);
  padding: 12px 25px;
  font-size: 1.05rem;
  font-weight: 600;
  margin-right: 13px;
  transition: var(--transition-main);
  border: none;
  outline: none;
  cursor: pointer;
  margin-bottom: 7px;
}
.btn {
  background: var(--color-metal);
  color: #fff;
}
.btn:hover, .btn:focus {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-btn-accept {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: #6D4737;
}
.cookie-btn-reject {
  background: #35343C;
  color: var(--color-accent);
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: #232227;
}
.cookie-btn-settings {
  background: #232227;
  color: var(--color-metal);
  border: 1.5px solid #514d56;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: var(--color-metal);
  color: #fff;
  border-color: var(--color-secondary);
}

/* -------------------- FOOTER -------------------- */
footer {
  background: #1D1C21;
  border-top: 2.5px solid #44434A;
  position: relative;
  z-index: 10;
  padding-top: 32px;
  padding-bottom: 32px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 12px;
}
footer nav a {
  color: #F3EEE7;
  font-size: .98rem;
  padding: 0 4px;
  border-radius: 4px;
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-secondary);
  background: #282729;
}
footer img {
  height: 42px;
  margin: 10px auto 4px auto;
}
footer small {
  color: #9E9BA5;
  font-size: 0.92rem;
  margin-top: 0px;
  letter-spacing: .03em;
}

/* -------------------- COOKIE CONSENT BANNER + MODAL -------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #232227ee;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 20px 19px 25px;
  z-index: 2500;
  box-shadow: 0 0 34px 0 #2E2D35dd;
  animation: slideUpShow .77s cubic-bezier(.68,-0.45,.21,1.37);
}
@keyframes slideUpShow {
  0% {transform: translateY(90px); opacity:0;}
  80% {transform: translateY(-14px); opacity:.87;}
  100% {transform: translateY(0); opacity:1;}
}
.cookie-banner-text {
  max-width: 680px;
  font-size: 1.05rem;
  letter-spacing: .01em;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-left: 18px;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 19px 10px 17px 11px;
  }
  .cookie-banner-actions {
    margin-left: 0;
    gap: 8px;
  }
}

.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,34,34,0.84);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2600;
  transition: opacity .3s cubic-bezier(.68,-0.55,.27,1.55);
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal.closed {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #232227;
  color: var(--color-accent);
  border-radius: var(--radius-card);
  max-width: 380px;
  box-shadow: 0 8px 44px 0 #322f3988;
  padding: 38px 30px 28px 30px;
  position: relative;
  animation: fadeInPopup .5s cubic-bezier(.68,-0.45,.21,1.3);
}
@keyframes fadeInPopup {
  0% {transform: scale(0.7) translateY(60px); opacity:0;}
  80% {transform: scale(1.07) translateY(-14px); opacity:.87;}
  100% {transform: scale(1) translateY(0); opacity:1;}
}
.cookie-modal-content h3 {
  font-family: var(--font-display);
  margin-bottom: 14px;
  color: var(--color-accent);
  font-size: 1.32rem;
}
.cookie-category {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category input[type="checkbox"]:disabled + label {
  color: #888a95;
  font-weight: bold;
  opacity: 0.78;
}
.cookie-modal-actions {
  display: flex;
  gap: 11px;
  margin-top: 19px;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 15px;
  background: transparent;
  border: none;
  color: var(--color-accent);
  font-size: 1.5rem;
  cursor: pointer;
}
.cookie-modal-close:hover {
  color: var(--color-secondary);
}
.cookie-category label {
  font-size: 1rem;
  font-family: var(--font-industrial);
  color: var(--color-accent);
  cursor: pointer;
}

/* -------------------- UTILITIES -------------------- */
@media (max-width: 768px) {
  .container {
    padding: 0 7px;
  }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.06rem; }
  .section { padding: 24px 6px; }
}
/* For small devices: */
@media (max-width: 500px) {
  nav > a img {
    height: 36px;
    margin-right: 13px;
  }
  .section {
    padding: 17px 3px;
  }
  .testimonial-card, .service-list > div,
  .service-categories-grid > div,.price-list > li, .faq-block, .faq-shortlist {
    padding: 13px 8px 13px 13px;
    font-size: .995rem;
  }
}

/* Utility classes for urban accent (metallic lines, icons, etc) */
.underline-metal {
  border-bottom: 2px solid #6E6B74;
}
/* Decorative only, not for content layout */
.metal-deco {
  position: absolute;
  width: 38px;
  height: 3px;
  background: linear-gradient(90deg, #5c595e 0%, #A06D5C 52%, #5c595e 100%);
  border-radius: 2px;
  bottom: -16px;
  left: 12px;
  z-index: 3;
}

/* -------------- SCROLLBARS, SELECTION, ETC. -------------- */
::-webkit-scrollbar {
  width: 8px;
  background: #282729;
}
::-webkit-scrollbar-thumb {
  background: #42404a;
  border-radius: 8px;
}
::selection {
  background: #A06D5C44;
}

/* -------------- TRANSITIONS FOR MICRO-INTERACTIONS -------------- */
.card, .service-list > div, .price-list > li, .content-grid > * {
  transition: box-shadow .13s, transform .14s, border-color .14s;
}
.card:hover, .service-list > div:hover, .price-list > li:hover {
  box-shadow: 0 10px 32px 0 #2e2d3528;
  border-color: var(--color-secondary);
  transform: translateY(-3px) scale(1.01);
}

/* -------------------- END OF CSS -------------------- */
