/* Salon Wildstil - Monochrome Sophisticated CSS v1.0 */

/* ======================== */
/* RESET & NORMALIZE STYLES */
/* ======================== */

html {
  box-sizing: border-box;
  font-size: 16px;
  height: 100%;
  background: #fff;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100%;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #fff;
  color: #181818;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #181818;
  text-decoration: none;
  transition: color 0.15s;
}
a:focus {
  outline: 2px solid #181818;
  outline-offset: 2px;
}
ul, ol {
  padding-left: 1.3em;
  margin-bottom: 0;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  color: #111;
  font-weight: 700;
  line-height: 1.2;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p {
  margin-bottom: 16px;
  color: #232323;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid #ebebeb;
}
th {
  background: #f3f3f3;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

/* =============== */
/* BRAND PALETTE   */
/* =============== */
:root {
  --color-bg: #fff;
  --color-bg-dark: #171717;
  --color-contrast-high: #111;
  --color-contrast-mid: #212121;
  --color-contrast-low: #b8b8b8;
  --color-primary: #181818;
  --color-secondary: #f3f3f3;
  --color-border: #e3e3e3;
  --color-accent: #C69527;
  --color-brand-dark: #274D40;
  --color-brand-light: #f6f3ee;
  --color-error: #c0392b;
  --color-shadow: rgba(30,30,30,0.06);
}

/* ================== */
/* LAYOUT & CONTAINER */
/* ================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg);
  border-radius: 18px;
  box-shadow: 0 2px 24px 0 var(--color-shadow);
}

/* =================== */
/* FLEXBOX PATTERNS    */
/* =================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(30,30,30,0.05);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 260px;
  flex: 1 1 280px;
}
.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: #fafafa;
  border-left: 4px solid var(--color-accent);
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(40,40,40,0.07);
  margin-bottom: 20px;
  transition: box-shadow .2s, background .2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 40px 0 rgba(0,0,0,0.13);
  background: #fff;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ============== */
/* HEADER         */
/* ============== */
header {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header img {
  height: 42px;
}

.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #181818;
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 0;
  border-radius: 2px;
  transition: color .14s, background .14s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-accent);
}
.cta-primary {
  background: #181818;
  color: #fff !important;
  border-radius: 28px;
  padding: 12px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.01rem;
  border: none;
  box-shadow: 0 .5px 1.2px 0 var(--color-shadow);
  cursor: pointer;
  transition: background .18s, color .14s, box-shadow .18s;
  display: inline-block;
  margin-left: 12px;
  letter-spacing: 0.02em;
  outline: none;
}
.cta-primary:hover,
.cta-primary:focus {
  background: var(--color-brand-dark);
  color: #fff;
  box-shadow: 0 3px 16px 0 rgba(39,77,64,0.09);
}
.cta-secondary {
  background: var(--color-secondary);
  color: #181818;
  border-radius: 28px;
  padding: 10px 25px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: 1.3px solid #bdbdbd;
  transition: background .14s, border .2s, color .15s;
  box-shadow: 0 1.5px 7px 0 rgba(40,40,40,.04);
  outline: none;
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: #f5f5f5;
  color: var(--color-accent);
  border: 1.3px solid var(--color-accent);
}

/* ===================== */
/* MOBILE NAVIGATION     */
/* ===================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #181818;
  cursor: pointer;
  margin-left: 18px;
  padding: 2px 6px;
  border-radius: 6px;
  transition: background .17s;
  z-index: 1022;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #eee;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #181818;
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.65,.05,.36,1);
  z-index: 1021;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  margin: 20px 30px 8px 0;
  align-self: flex-end;
  cursor: pointer;
  border-radius: 40px;
  padding: 5px 15px;
  transition: background .17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #222;
  outline: none;
}
.mobile-nav {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 0.7em;
  width: 100%;
  align-items: flex-end;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 12px 38px 12px 0;
  border-radius: 0 18px 18px 0;
  transition: background .14s, color .13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #212121;
  color: var(--color-accent);
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 15px;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 6px;
  }
  .main-nav a {
    font-size: 0.98rem;
    padding: 6px 0;
  }
}
@media (max-width: 820px) {
  .main-nav {
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header img {
    height: 37px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ==================== */
/* HERO SECTION         */
/* ==================== */
.hero {
  margin-bottom: 60px;
  padding: 60px 0 48px;
  background: #fff;
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid #e5e5e5;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #181818;
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.11;
}
.hero p {
  font-size: 1.2rem;
  color: #232323;
  max-width: 700px;
  margin-bottom: 24px;
}
.hero .cta-primary {
  margin-top: 8px;
}
@media (max-width: 1020px) {
  .hero {
    padding-top: 40px;
    padding-bottom: 32px;
  }
}
@media (max-width: 600px) {
  .hero {
    padding-top: 26px;
    padding-bottom: 18px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
}

/* ====================== */
/* FEATURES SECTION       */
/* ====================== */
.features {
  margin-bottom: 60px;
  padding: 42px 0 24px;
  background: #fafbfb;
  border-radius: 18px;
}
.features .content-wrapper {
  gap: 14px;
}
.features h2 {
  color: #111;
  margin-bottom: 8px;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 8px;
  margin-bottom: 0;
  list-style: none;
}
.features ul li {
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px 14px 18px;
  color: #232323;
  box-shadow: 0 1px 10px rgba(32,32,32,0.04);
  font-size: 1.06rem;
  min-width: 240px;
  max-width: 390px;
  flex: 1 1 220px;
  border: 1px solid #ececec;
  transition: box-shadow .2s, border .2s;
}
.features ul li img {
  width: 30px;
  height: 30px;
}
.features ul li:hover,
.features ul li:focus {
  box-shadow: 0 4px 32px rgba(50,50,50,0.14);
  border: 1px solid var(--color-accent);
}
.features blockquote {
  font-size: 1.15rem;
  border-left: 4px solid var(--color-accent);
  background: #f6f6f6;
  padding: 13px 22px;
  font-style: italic;
  color: #181818;
  margin-top: 18px;
  margin-bottom: 14px;
  border-radius: 10px 4px 4px 10px;
}

/* ======================== */
/* CARDS, TEAM, SERVICES    */
/* ======================== */
.services ul,
.service-details ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  margin-bottom: 20px;
}
.services ul li,
.service-details ul li {
  background: #f9f9f9;
  padding: 18px 24px;
  border-radius: 12px;
  font-size: 1.08rem;
  color: #232323;
  box-shadow: 0 1.5px 8px rgba(20,20,20,0.07);
  transition: box-shadow .2s, background .17s;
  border: 1px solid #ededed;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.services ul li span,
.service-details ul li .service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-accent);
  font-size: 1.03rem;
  margin-left: 18px;
}
.services ul li strong {
  font-weight: 700;
  margin-right: 7px;
}
.service-details ul li h3 {
  font-size: 1.16rem;
  margin-bottom: 8px;
}
.service-details ul li .text-section {
  color: #222;
  font-size: 1.01rem;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.price-note, .price-notes {
  color: #888;
  font-size: 0.98rem;
  margin-top: 10px;
}

/* ============ */
/* TESTIMONIALS */
/* ============ */
.testimonials {
  margin-bottom: 60px;
  padding: 44px 0 24px;
}
.testimonials .content-wrapper {
  gap: 20px;
}
.testimonial-card {
  background: #fafafa;
  border-left: 4px solid var(--color-accent);
  color: #181818;
  box-shadow: 0 2px 16px 0 rgba(40,40,40,0.07);
  transition: box-shadow .18s, background .18s;
}
.testimonial-card p {
  font-size: 1.09rem;
}
.testimonial-card .stars {
  color: var(--color-accent);
  font-size: 1.5rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: 12px;
  white-space: nowrap;
  letter-spacing: 2px;
}

/* ============= */
/* ABOUT/LEGAL   */
/* ============= */
.about-team .content-wrapper, .about .content-wrapper, .legal .content-wrapper {
  gap: 30px;
}
.text-section, .location-description, .advantages {
  font-size: 1.08rem;
  color: #232323;
  background: #f8f8f8;
  border-radius: 9px;
  padding: 18px 20px;
  margin-bottom: 16px;
}
.brand-promise {
  margin-top: 14px;
  font-size: 1.01rem;
  background: #f3f3f3;
  border-left: 3px solid var(--color-accent);
  padding-left: 16px;
  border-radius: 5px;
}

/* ============= */
/* PRICELIST     */
/* ============= */
.price-list {
  margin-bottom: 60px;
  padding: 40px 0;
}
.price-list table {
  margin-top: 16px;
  margin-bottom: 18px;
  background: #fafbfb;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 660px) {
  .price-list table,
  .price-list thead,
  .price-list tbody,
  .price-list tr {
    display: block;
    width: 100%;
  }
  .price-list th,
  .price-list td {
    display: block;
    width: 100%;
    border-bottom: 1px solid #ededed;
    text-align: left;
    padding: 12px 8px;
  }
  .price-list thead {
    display: none;
  }
}

/* ============= */
/* CONTACT INFO  */
/* ============= */
.contact-info .content-wrapper,
.contact .content-wrapper {
  gap: 24px;
}
.contact-information {
  line-height: 1.25;
  gap: 10px;
  display: flex;
  flex-direction: column;
  margin-bottom: 13px;
}
.contact-hint, .cta-hint {
  font-size: 1.01rem;
  color: #595959;
  margin-top: 4px;
}

/* ============= */
/* CTA SECTIONS  */
/* ============= */
.cta {
  background: #181818;
  color: #fff;
  border-radius: 20px;
  margin-bottom: 40px;
  padding: 44px 0 32px;
  box-shadow: 0 3px 18px rgba(20,20,20,0.12);
  text-align: center;
}
.cta a.cta-primary {
  background: #fff;
  color: #181818 !important;
  border: none;
  margin-top: 0;
  margin-bottom: 10px;
}
.cta a.cta-primary:hover, .cta a.cta-primary:focus {
  background: var(--color-brand-light);
  color: var(--color-brand-dark) !important;
}

/* ============ */
/* PROCESS STEPS */
/* ============ */
.process-steps {
  margin-top: 18px;
  background: #f3f3f3;
  border-radius: 12px;
  padding: 18px 22px;
}
.process-steps ol {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: decimal inside;
  color: #202020;
  font-size: 1.05rem;
}

/* =========== */
/* FOOTER      */
/* =========== */
footer {
  background: #181818;
  color: #f5f5f5;
  padding: 30px 0 16px;
  border-top: 2px solid #222;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.footer-nav, .footer-legal {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
}
.footer-nav a,
.footer-legal a {
  color: #f9f9f9;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 0;
  transition: color .13s;
}
.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--color-accent);
}
.brand-signature {
  margin-top: 12px;
  color: #ababab;
  font-size: 0.93rem;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.01em;
}
.brand-signature img {
  height: 30px;
}

/* ============= */
/* COOKIE BANNER */
/* ============= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #111;
  border-top: 1.5px solid #d5d5d5;
  box-shadow: 0 -2px 18px rgba(30,30,30,0.10);
  z-index: 1050;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 10px 20px 10px;
  transition: transform .35s cubic-bezier(.65,.05,.36,1);
  gap: 22px;
  font-size: 0.99rem;
  flex-wrap: wrap;
}
.cookie-banner.hide {
  transform: translateY(200%);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  max-width: 480px;
  margin-right: 18px;
  color: #111;
}
.cookie-banner button {
  margin-left: 10px;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 21px;
  cursor: pointer;
  border: none;
  background: #181818;
  color: #fff;
  padding: 10px 20px;
  margin-right: 7px;
  box-shadow: 0 1.5px 7px rgba(40,40,40,.04);
  transition: background .17s, color .14s;
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: var(--color-brand-dark);
  color: var(--color-accent);
}
.cookie-banner .cookie-btn-secondary {
  color: #181818;
  background: #f3f3f3;
  border: 1.1px solid #cacaca;
  transition: background .16s, border .14s;
}
.cookie-banner .cookie-btn-secondary:hover,
.cookie-banner .cookie-btn-secondary:focus {
  color: var(--color-accent);
  background: #ededed;
  border: 1.1px solid var(--color-accent);
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(30,30,30,.56);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3.5px 32px rgba(46,46,46,0.20);
  max-width: 420px;
  width: 94vw;
  padding: 30px 24px 28px;
  color: #111;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookieModalAnim .33s cubic-bezier(.65,.05,.36,1);
}
@keyframes cookieModalAnim {
  from { transform: scale(.94) translateY(54px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 8px;
}
.cookie-modal .category-toggle {
  accent-color: var(--color-accent);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 15px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.48rem;
  color: #888;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 32px;
  transition: background .16s;
}
.cookie-modal .modal-close:hover,
.cookie-modal .modal-close:focus {
  background: #ececec;
  color: #181818;
  outline: none;
}

/* =============== */
/* RESPONSIVE      */
/* =============== */
@media (max-width: 768px) {
  .section {
    padding: 28px 5px;
    margin-bottom: 38px;
  }
  .features ul,
  .card-container {
    flex-direction: column;
    gap: 17px;
  }
  .services ul,
  .service-details ul {
    gap: 15px;
  }
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .footer-nav, .footer-legal,
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .brand-signature {
    margin-top: 16px;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: 1.2rem;
  }
  .footer-nav a,
  .footer-legal a {
    font-size: .89rem;
  }
  .brand-signature {
    font-size: 0.79rem;
  }
}

/* =============== */
/* MICRO INTERACTIONS */
/* =============== */
button, .cta-primary, .cta-secondary, .cookie-btn, .modal-close {
  transition: background .23s, color .13s, box-shadow .18s;
}
.card:hover, .services ul li:hover, .service-details ul li:hover {
  box-shadow: 0 4px 24px rgba(40,40,40,.15);
  background: #fff;
}

/* =============== */
/* FOCUS STATES    */
/* =============== */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  z-index: 12;
}

/* =============== */
/* UTILITY CLASSES */
/* =============== */
.text-center { text-align: center; }
.d-none { display: none !important; }

/* END Monochrome Sophisticated Theme CSS */
