/* CSS RESET & NORMALIZE */
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; margin: 0; padding: 0; }
html, body { height: 100%; }
body { min-height: 100vh; line-height: 1.6; background-color: #FCFAF7; font-family: 'Open Sans', Arial, sans-serif; color: #355359; font-size: 16px; letter-spacing: 0.02em; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; border: 0; }
ul, ol { padding-left: 1.2rem; }
a { color: #2d4347; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #e1b056; }
button { font-family: inherit; font-size: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
table { border-collapse: collapse; width: 100%; margin-bottom: 32px; }
th, td { border: 1px solid #e8e5e2; padding: 12px 14px; text-align: center; font-size: 16px; background: #fff; }
th { background: #F7F3ED; font-weight: 600; font-family: 'Montserrat', Arial, sans-serif; letter-spacing: 0.02em; }

/* COLOR PALETTE */
:root {
  --primary: #355359;
  --secondary: #f7f3ed;
  --accent: #e1b869;
  --brand-dark: #2d4347;
  --brand-light: #ffffff;
  --pastel-pink: #f6e7e2;
  --pastel-mint: #e7f3ef;
  --pastel-yellow: #fff8df;
  --pastel-blue: #e0eff8;
  --pastel-lavender: #f4e7ff;
  --danger: #f8abab;
  --shadow: rgba(50, 62, 86, 0.09);
  --shadow-strong: rgba(50,62,86,0.16);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.25rem; margin-bottom: 20px; }
h2 { font-size: 1.5rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 14px; }
h4 { font-size: 1.1rem; margin-bottom: 12px; }
h5 { font-size: 1rem; margin-bottom: 10px; }
h6 { font-size: 0.9rem; margin-bottom: 8px; }

p, ul, ol { margin-bottom: 16px; color: var(--primary); font-size: 1rem; }
ul li, ol li { margin-bottom: 8px; }
strong { font-weight: 700; }

.section {
  margin-bottom: 60px; padding: 40px 20px;
  background: transparent;
}
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .content-wrapper { gap: 32px; }
}

/* HEADER NAVIGATION */
header {
  background: var(--pastel-mint);
  box-shadow: 0 2px 8px var(--shadow);
  position: relative;
  z-index: 1002;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 11px; padding-bottom: 11px;
}
header img { height: 64px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  padding: 7px 11px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a.btn-primary { padding: 10px 22px; font-weight: 600; }
.main-nav a:not(.btn-primary):hover, .main-nav a:focus { background: var(--pastel-yellow); color: var(--brand-dark); }
.main-nav a.btn-primary {
  background: var(--accent);
  color: var(--brand-dark);
  border-radius: 22px;
  margin-left: 16px;
  box-shadow: 0 4px 12px var(--shadow);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.main-nav a.btn-primary:hover, .main-nav a.btn-primary:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 24px var(--shadow-strong);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pastel-blue);
  color: var(--primary);
  font-size: 1.75rem;
  border: none;
  padding: 8px 16px;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s;
  margin-left: 14px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--accent);
  color: #fff;
}
@media (min-width: 960px) {
  .mobile-menu-toggle { display: none; }
}

.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(53,83,89,0.12);
  z-index: 1100;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transition: background 0.25s;
}
.mobile-menu.active { display: flex; }
.mobile-menu .mobile-menu-close {
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  width: 48px; height: 48px;
  align-self: flex-end;
  margin: 18px 26px 0 0;
  border: none;
  box-shadow: 0 2px 9px var(--shadow-strong);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu .mobile-menu-close:hover, .mobile-menu .mobile-menu-close:focus {
  background: var(--danger);
  color: #fff;
}
.mobile-nav {
  background: var(--pastel-blue);
  min-width: 270px;
  box-shadow: -2px 0 16px var(--shadow-strong);
  border-top-left-radius: 26px;
  border-bottom-left-radius: 26px;
  padding: 42px 28px 42px 30px;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.76,0,.27,1.15);
}
.mobile-menu.active .mobile-nav {
  transform: translateX(0);
}
.mobile-nav a {
  color: var(--brand-dark);
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 9px 5px;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 959px) {
  .main-nav { display: none; }
  .mobile-menu { display: flex; }
  .mobile-menu:not(.active) { display: none; }
}

@media (min-width: 960px) {
  .main-nav { display: flex; }
  .mobile-menu { display: none !important; }
}


/* HERO SECTION */
.hero {
  padding-top: 58px; padding-bottom: 54px;
  background: linear-gradient(90deg, var(--pastel-pink) 65%, var(--pastel-blue) 100%);
  display: flex; align-items: center; min-height: 320px;
}
.hero .content-wrapper { align-items: flex-start; gap: 22px; }
.hero h1 { font-size: 2.7rem; color: var(--brand-dark); font-weight: 700; letter-spacing: .01em; }
.hero p { font-size: 1.18rem; color: var(--primary); max-width: 440px; }

@media (max-width: 768px) {
  .hero { padding-top: 36px; padding-bottom: 36px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
}

/* FLEXBOX LAYOUTS */
.features, .feature-grid, .testimonial-slider, .footer-content, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid {
  align-items: stretch;
  justify-content: space-between;
}
.feature {
  background: var(--pastel-yellow);
  border-radius: 18px;
  box-shadow: 0 2px 14px var(--shadow-strong);
  padding: 24px 20px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  max-width: 350px;
  margin-bottom: 20px;
  transition: box-shadow .19s, transform .18s;
}
.feature:hover {
  box-shadow: 0 6px 24px var(--shadow-strong);
  transform: translateY(-5px) scale(1.02);
}
.feature img { width: 38px; height: 38px; margin-bottom: 4px; }
.feature h3 { font-size: 1.17rem; margin-bottom: 0; margin-top: 2px; font-weight: 600; color: var(--brand-dark); }
.feature p { font-size: 1rem; text-align: center; color: var(--primary); }

@media (max-width: 980px) {
  .feature { flex: 1 1 47%; }
}
@media (max-width: 600px) {
  .feature-grid { flex-direction: column; gap: 22px; }
  .feature { min-width: 0; max-width: 100%; width: 100%; }
}

/** TESTIMONIALS **/
.testimonials { background: var(--pastel-lavender); border-radius: 24px; box-shadow: 0 1px 7px var(--shadow); }
.testimonial-slider {
  display: flex; flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px; margin-bottom: 10px;
  flex-direction: row;
}
.testimonial-card {
  background: var(--secondary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 26px;
  border-radius: 19px;
  box-shadow: 0 2px 12px var(--shadow);
  flex: 1 1 260px; min-width: 220px; max-width: 370px;
  margin-bottom: 20px;
  border: 2px solid var(--pastel-blue);
  position: relative;
  transition: box-shadow .2s, transform .18s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 22px var(--shadow-strong);
  transform: translateY(-4px) scale(1.014);
}
.testimonial-card .star-rating {
  color: #e1b056;
  font-size: 1.16rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.testimonial-card p {
  color: #253a3b;
  font-size: 1.08rem;
  line-height: 1.7;
}
.testimonial-meta {
  color: #53697b;
  font-size: 1rem;
  font-style: italic;
  margin-top: 7px;
}
.average-rating {
  text-align: center;
  margin-top: 22px;
  font-size: 1.13rem;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--primary);
  background: var(--pastel-yellow);
  border-radius: 10px;
  padding: 8px 21px 7px 21px;
  display: inline-block;
  box-shadow: 0 1px 7px var(--shadow);
}

@media (max-width: 900px){
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card { max-width: 100%; }
}

/* CTA SECTION */
.cta {
  background: var(--pastel-mint);
  border-radius: 26px;
  text-align: center;
  box-shadow: 0 0 12px var(--shadow);
  margin-bottom: 40px; position: relative;
  padding-top: 34px; padding-bottom: 34px;
}
.cta h2 { color: var(--primary); font-weight: 700; margin-bottom: 10px; }
.cta p { font-size: 1.1rem; margin-bottom: 22px; }

/* BUTTONS */
.btn-primary, .btn {
  display: inline-block;
  background: var(--accent);
  color: var(--brand-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 11px 32px;
  border-radius: 24px;
  border: 0;
  box-shadow: 0 2px 10px var(--shadow);
  margin-top: 8px;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.17s, transform 0.14s;
}
.btn-primary:hover, .btn-primary:focus, .btn:hover, .btn:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 7px 19px var(--shadow-strong);
  transform: translateY(-2px) scale(1.03);
}

/* CARDS & FLEX CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--secondary);
  border-radius: 14px;
  box-shadow: 0 1px 8px var(--shadow-strong);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.17s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 8px 24px var(--shadow-strong);
  transform: translateY(-3px) scale(1.012);
}
.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; }
}

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

/* ABOUT, STORY, FAQ, ETC. */
.about, .story, .services, .benefits, .privacy-policy, .gdpr-info, .cookie-policy, .terms, .thank-you, .gallery, .contact, .locations, .disclaimer {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 1px 8px var(--shadow);
  margin-bottom: 60px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 1.04rem;
  color: var(--primary);
}
.text-section.legal {
  padding: 14px 4px 0 2px;
  background: var(--pastel-mint);
  border-radius: 13px;
  box-shadow: 0 1px 4px var(--shadow);
}
.credentials {
  background: var(--pastel-lavender);
  border-left: 5px solid var(--accent);
  padding: 14px 19px;
  border-radius: 9px;
  font-size: .96rem;
  margin-bottom: 0;
}

/* SERVICE LISTS */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-item {
  background: var(--pastel-mint);
  border-radius: 19px;
  box-shadow: 0 2px 11px var(--shadow-strong);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1 1 240px;
  min-width: 200px; max-width: 368px;
  margin-bottom: 20px;
  transition: box-shadow .17s, transform .16s;
}
.service-item:hover { box-shadow: 0 6px 22px var(--shadow-strong); transform: translateY(-3px); }
.service-item img { width: 32px; height: 32px; margin-bottom: 8px; }
.service-item h3 { color: var(--brand-dark); font-family: 'Montserrat', Arial, sans-serif; font-weight: 600; font-size: 1.09rem; }
.service-item p { color: var(--primary); font-size: .97rem; text-align: center; }

@media (max-width: 900px){
  .service-list { flex-direction: column; gap: 22px; }
  .service-item { min-width: 0; max-width: 100%; }
}

/******** PRICING ********/
.pricing > .container { padding-top: 12px; }
.pricing table { background: var(--pastel-pink); border-radius: 16px; box-shadow: 0 1px 8px var(--shadow-strong); overflow: hidden; }
.pricing table td, .pricing table th { border: 1px solid #ecddd5; }
.pricing table th { background: var(--accent); color: var(--brand-dark); }
.pricing table tr:nth-child(odd) td { background: #faf5f0; }
.pricing table tr:nth-child(even) td { background: #fff; }
.pricing-note {
  background: var(--pastel-pink);
  color: #3c535f;
  border-left: 5px solid var(--accent);
  border-radius: 11px;
  padding: 13px 19px;
  box-shadow: 0 1px 5px var(--shadow-strong);
  margin-bottom: 12px;
}

/******** GALLERY ********/
.gallery {
  background: var(--pastel-blue);
  border-radius: 17px;
  box-shadow: 0 1px 8px var(--shadow);
  margin-bottom: 60px;
}

/******** CONTACT ********/
.salon-info {
  background: var(--pastel-yellow);
  border-radius: 14px;
  box-shadow: 0 1px 5px var(--shadow-strong);
  padding: 17px 19px;
  margin-bottom: 14px;
}
.contact-form-info { margin-bottom: 8px; }
.address-block {
  background: var(--pastel-pink);
  border-radius: 10px;
  padding: 11px 17px;
  margin-bottom: 18px;
}
.map-placeholder {
  background: var(--pastel-lavender);
  border-radius: 18px;
  padding: 20px 15px;
  text-align: center;
  color: #767676;
  box-shadow: 0 1px 4px var(--shadow-strong);
  font-size: 1rem;
}

/******** FOOTER ********/
footer {
  background: var(--pastel-blue);
  box-shadow: 0 -1px 6px var(--shadow-strong);
  padding-top: 22px; padding-bottom: 14px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 36px 0 16px 0;
}
.footer-brand {
  flex: 1 1 230px;
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-start;
}
.footer-brand img { height: 46px; margin-bottom: 12px; }
.footer-brand p { font-size: .99rem; color: var(--primary); }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-dark);
}
.footer-nav a {
  color: var(--brand-dark);
  font-size: .98rem;
  padding: 5px 0;
  border-radius: 7px;
  transition: color 0.16s, background 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus { color: var(--accent); background: var(--pastel-yellow); }
.footer-contact {
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: .98rem;
  color: var(--primary);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 4px;
}
.footer-social a {
  display: flex;
  align-items: center;
  background: var(--accent);
  border-radius: 50%;
  width: 38px; height: 38px;
  justify-content: center;
  transition: background 0.18s;
}
.footer-social a:hover, .footer-social a:focus { background: var(--primary); }
.footer-social img { width: 22px; height: 22px; }

@media (max-width: 900px){
  .footer-content { flex-direction: column; gap: 20px; align-items: stretch; }
  .footer-brand, .footer-contact { align-items: flex-start; }
  .footer-social { justify-content: flex-start; }
}

/******* COOKIE CONSENT BANNER & MODAL *******/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1200;
  background: var(--pastel-lavender);
  color: var(--brand-dark);
  padding: 22px 12px 20px 12px;
  box-shadow: 0 -2px 18px var(--shadow-strong);
  border-top-left-radius: 17px;
  border-top-right-radius: 17px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  animation: cookieFadeIn 0.8s cubic-bezier(.07,.83,.61,1.21);
  font-size: 1rem;
}
@keyframes cookieFadeIn {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner-content { flex: 1 1 220px; }
.cookie-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: var(--accent);
  color: var(--brand-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  padding: 10px 18px;
  border-radius: 18px;
  margin-bottom: 3px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
  box-shadow: 0 1px 6px var(--shadow-strong);
}
.cookie-btn.reject {
  background: var(--danger);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--primary);
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--brand-dark);
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--accent);
  color: var(--brand-dark);
}

/* COOKIE MODAL OVERLAY */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 1250;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(53,83,89,0.20);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: var(--pastel-blue);
  border-radius: 22px;
  max-width: 410px;
  width: 92vw;
  padding: 36px 28px 28px 28px;
  box-shadow: 0 8px 32px var(--shadow-strong);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalFadeIn 0.42s cubic-bezier(.07,.83,.61,1.21);
}
@keyframes modalFadeIn {
  0% { opacity: 0; transform: scale(0.96) translateY(60px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-dark);
  font-size: 1.24rem; margin-bottom: 10px;
}
.cookie-modal-category {
  padding: 15px 12px;
  background: var(--pastel-mint);
  border-radius: 12px;
  margin-bottom: 7px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cookie-modal-category.disabled { opacity: 0.6; }
.cookie-modal-category label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: .98rem;
  margin-right: 4px;
}
.cookie-modal-category input[type=checkbox] {
  accent-color: var(--accent);
  margin-right: 8px;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.cookie-modal-close {
  background: transparent;
  color: var(--primary);
  border: none;
  position: absolute;
  top: 18px; right: 26px;
  font-size: 1.5rem;
  cursor: pointer;
}
@media (max-width: 640px) {
  .cookie-modal { padding: 23px 7vw 21px 7vw; }
}

/******* SPACING & UTILITIES ******/
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 8px !important; }
.mb-2 { margin-bottom: 8px !important; }
.mt-4 { margin-top: 16px !important; }
.mb-4 { margin-bottom: 16px !important; }

/******* RESPONSIVE LAYOUTS *******/
@media (max-width: 768px) {
  body { font-size: 15px; }
  .section, .about, .story, .services, .benefits, .privacy-policy, .gdpr-info, .cookie-policy, .terms, .thank-you, .gallery, .contact, .locations, .disclaimer {
    padding: 27px 7px;
    margin-bottom: 36px;
  }
  .footer-content { flex-direction: column; gap: 16px; }
}

/******* SELECT/INPUT STYLE *******/
select, input[type=text], input[type=email], textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border: 1px solid #b5cbc7;
  border-radius: 11px;
  padding: 9px 15px;
  background: #fff;
  margin-bottom: 11px;
  transition: border 0.18s;
}
select:focus, input:focus, textarea:focus {
  outline: 2px solid var(--accent);
  border-color: var(--accent);
}

/******* VISUAL EFFECTS AND INTERACTIONS *******/
a, button, .btn, .btn-primary { transition: background 0.18s, color 0.18s, box-shadow 0.17s, transform 0.13s; }
.feature, .card, .testimonial-card, .service-item { transition: box-shadow .17s, transform .13s; }

/******* ACCESSIBILITY *******/
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* NO ABSOLUTE POSITIONING for cards or major content. Only for close buttons, etc. */

/* ENSURE NO GRID or MULTI-COLUMN PROPERTIES USED ANYWHERE */
/* -- End of stylesheet -- */
