/* ==== Velvet Saloon Minimalist CSS ==== */
/* CSS RESET (Normalize + reset) */
html {
  box-sizing: border-box;
  font-size: 16px;
  overscroll-behavior: none;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  line-height: 1.6;
  background: #fff;
  color: #1D2233;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video {
  max-width: 100%;
  display: block;
}
a {
  color: #1D2233;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #A38971;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 0;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1D2233;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
h1 { font-size: 2.75rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.5rem; margin-bottom: 16px; }
h4 { font-size: 1.125rem; margin-bottom: 12px; }
p, .blog-meta {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #282C3A;
}
strong { font-weight: 700; }

/* ==== LAYOUT ==== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}

section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(29,34,51,0.03);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(29,34,51,0.05);
  margin-bottom: 20px;
  padding: 28px 22px;
  position: relative;
  flex: 1 1 320px;
  min-width: 260px;
  transition: box-shadow 0.2s;
  cursor: pointer;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(29,34,51,0.09);
}
.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;
  background: #FAF9F7;
  box-shadow: 0 2px 12px rgba(29,34,51,0.06);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 220px;
  transition: box-shadow 0.22s, border-color 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px rgba(163,137,113,0.11);
  border-color: #E6DDCE;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 14px 0;
}

/* ==== HEADER ==== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(29,34,51,0.04);
  position: sticky;
  top: 0;
  z-index: 31;
}

header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 24px 12px 24px;
}
header img[alt="Velvet Saloon"], header img[alt="Velvet Saloon"] {
  height: 38px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1D2233;
  padding: 6px 10px;
  border-radius: 8px;
  transition: color .18s, background .17s;
  outline: none;
}
.main-nav a:hover, .main-nav a:focus {
  color: #A38971;
  background: #F6F4F2;
}
.main-nav .cta-btn {
  margin-left: 12px;
  background: #A38971;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  padding: 7px 20px;
  transition: background .24s, box-shadow .12s;
  box-shadow: 0 0px 1px rgba(29,34,51,0.06);
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: #1D2233;
  color: #fff;
  box-shadow: 0 3px 12px rgba(29,34,51,0.13);
}

.mobile-menu-toggle {
  display: none;
  border: none;
  background: none;
  color: #1D2233;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 8px;
  z-index: 50;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background .18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FAF9F7;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 12px 48px rgba(29,34,51,0.13);
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform .33s cubic-bezier(.44,.1,.21,1.04);
  padding: 32px 28px 32px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  border: none;
  background: none;
  color: #1D2233;
  cursor: pointer;
  margin-bottom: 24px;
  background: #ececec;
  border-radius: 8px;
  padding: 6px 16px;
  transition: background .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E6DDCE;
  color: #A38971;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-top: 12px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #1D2233;
  border-radius: 8px;
  padding: 12px 0;
  transition: background .13s, color .13s;
  outline: none;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #F6F4F2;
  color: #A38971;
}

/* ==== HERO ==== */
.hero {
  background: #FAF9F7;
  box-shadow: 0 2px 16px rgba(163,137,113,0.08);
  border-radius: 18px;
  margin-top: 34px;
  margin-bottom: 60px;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: #1D2233;
}
.hero p {
  font-size: 1.25rem;
  color: #282C3A;
}
.hero .cta-btn {
  margin-top: 10px;
}

/* ==== FEATURE SECTION ==== */
.features ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 14px;
}
.features li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 10px;
  padding: 16px 22px;
  font-size: 1.05rem;
  box-shadow: 0 1px 4px rgba(29,34,51,0.04);
  color: #1D2233;
  min-height: 56px;
}
.features li img {
  width: 34px;
  height: 34px;
}

/* ==== CTA BUTTON ==== */
.cta-btn {
  display: inline-block;
  background: #A38971;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 12px 32px;
  box-shadow: 0 2px 12px rgba(163,137,113,0.10);
  transition: background .21s, box-shadow .18s, color .19s;
  cursor: pointer;
  outline: none;
  margin-top: 8px;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #1D2233;
  color: #fff;
  box-shadow: 0 5px 24px rgba(29,34,51,0.12);
}

/* ==== TESTIMONIALS ==== */
.testimonials .content-wrapper,
.short-testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}
.avatar {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E6DDCE;
  color: #A38971;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 50%;
  margin-right: 10px;
  letter-spacing: 0.02em;
}
blockquote {
  font-size: 1.08rem;
  font-style: italic;
  color: #1D2233;
  margin: 0 0 8px 0;
  line-height: 1.5;
  border-left: 3px solid #A38971;
  padding-left: 16px;
}
.testimonial-author {
  color: #888;
  font-size: 0.97rem;
  margin-left: 8px;
}

/* ==== CONTACT/CALL TO ACTION SHORT INFO ==== */
ul.contact-short, .contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 8px 0 16px 0;
}
ul.contact-short li, .contact-details-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: #1D2233;
}
ul.contact-short img, .contact-details-list img {
  width: 26px;
  height: 26px;
  opacity: 0.94;
}

.map-box {
  background: #FAF9F7;
  border-radius: 10px;
  padding: 16px 24px;
  color: #505566;
  margin-top: 12px;
  margin-bottom: 16px;
}
.cta-contact {
  margin: 10px 0 0 0;
}
.cta-contact .cta-btn {
  margin-top: 10px;
}

/* ==== ABOUT / TEAM ==== */
.team .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.team-member {
  background: #FAF9F7;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(29,34,51,0.03);
  flex: 1 1 260px;
  min-width: 220px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 1.06rem;
  margin-bottom: 12px;
  transition: box-shadow .19s;
}
.team-member:hover {
  box-shadow: 0 3px 18px rgba(29,34,51,0.10);
}

/* ==== FAQ ==== */
.faq dl {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq dt {
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1D2233;
  margin-bottom: 3px;
  font-size: 1.1rem;
}
.faq dd {
  margin-left: 22px;
  color: #505566;
  margin-bottom: 13px;
  font-size: 0.995rem;
}

/* ==== PORTFOLIO ==== */
.case-study {
  background: #FAF9F7;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(29,34,51,0.04);
  margin-bottom: 24px;
  padding: 24px 18px 18px 18px;
}
.case-study h2 { font-size: 1.35rem; margin-bottom: 10px; color: #1D2233; }

/* ==== LEGAL TEXT ==== */
.legal-text h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  margin-top: 22px;
  margin-bottom: 10px;
  color: #A38971;
}
.legal-text ul {
  margin-bottom: 14px;
}
.legal-text ul li {
  font-size: 1rem;
}

/* ==== BLOG ==== */
.blog-list .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-preview {
  background: #FAF9F7;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(29,34,51,0.04);
  padding: 22px 16px 18px 16px;
  flex: 1 1 320px;
  min-width: 240px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-preview h2 {
  font-size: 1.23rem;
  margin-bottom: 10px;
}
.blog-preview a {
  color: #A38971;
  font-weight: 600;
  font-size: 1.01rem;
  align-self: flex-start;
  margin-top: 6px;
  transition: color 0.15s;
}
.blog-preview a:hover, .blog-preview a:focus {
  color: #1D2233;
  text-decoration: underline;
}
.blog-meta {
  color: #A38971;
  font-size: 0.95rem;
  margin-bottom: 0;
}
.categories-tags {
  padding: 18px 0 10px 0;
  font-size: 1rem;
  color: #505566;
}

/* ==== FOOTER ==== */
footer {
  background: #F6F4F2;
  padding: 40px 0 24px 0;
  margin-top: 60px;
  width: 100%;
  border-radius: 35px 35px 0 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 28px 38px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand img {
  height: 48px;
  margin-bottom: 12px;
}
.footer-info ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
}
.footer-info li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #545455;
}
.footer-info img {
  width: 22px;
  opacity: 0.87;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-menu a {
  color: #A38971;
  font-size: 1.01rem;
  font-weight: 500;
  transition: color .13s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #1D2233;
  text-decoration: underline;
}
.social-links {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}
.social-links a {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(163,137,113,0.09);
  transition: box-shadow .16s, background .12s;
}
.social-links a:hover, .social-links a:focus {
  background: #E6DDCE;
  box-shadow: 0 4px 18px rgba(29,34,51,0.20);
}

/* ==== THANK YOU PAGE ==== */
.thank-you .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 16px 8px;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 1024px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
  header .container { padding: 12px 15px 7px 15px; }
}
@media (max-width: 900px) {
  .footer-brand, .footer-info, .footer-menu, .social-links {
    flex: 1 1 100%;
    margin-bottom: 16px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .hero, .section, section {
    padding: 24px 4px;
    margin-bottom: 36px;
  }
  .content-wrapper, .testimonials .content-wrapper, .short-testimonials {
    flex-direction: column;
    gap: 18px;
  }
  .card-container, .content-grid, .team .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .features ul, ul.contact-short, .contact-details-list {
    gap: 10px;
    padding-left: 0.8em;
  }
  .case-study, .blog-preview, .team-member, .testimonial-card {
    min-width: 0;
    width: 100%;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-brand img {
    height: 36px;
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.17rem; }
}

@media (max-width: 500px) {
  .hero, .section, section {
    border-radius: 10px;
    padding: 12px 2px;
  }
  .case-study, .blog-preview, .team-member, .testimonial-card, .map-box {
    border-radius: 8px;
    padding: 10px 6px;
  }
  .cta-btn, .main-nav .cta-btn {
    font-size: 1rem;
    padding: 10px 16px;
  }
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 2px solid #E6DDCE;
  box-shadow: 0 -2px 18px rgba(29,34,51,0.07);
  padding: 20px 16px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: wrap;
  transition: transform .25s cubic-bezier(.44,.13,.41,1.05), opacity .18s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(60px);
}
.cookie-consent-text {
  flex: 1 1 240px;
  color: #1D2233;
  font-size: 1rem;
}
.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 1.01rem;
  font-weight: 600;
  cursor: pointer;
  background: #F6F4F2;
  color: #1D2233;
  transition: background .17s, color .12s, box-shadow .17s;
}
.cookie-btn.accept {
  background: #A38971;
  color: #fff;
}
.cookie-btn.reject {
  background: #E6DDCE;
  color: #1D2233;
}
.cookie-btn.settings {
  background: #fff;
  border: 1px solid #A38971;
  color: #A38971;
}
.cookie-btn:hover, .cookie-btn:focus {
  box-shadow: 0 2px 10px rgba(163,137,113,0.13);
  background: #1D2233;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #A38971;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 12px 5px;
  }
  .cookie-consent-text {
    font-size: 0.94rem;
  }
}

/* ==== COOKIE CONSENT MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  background: rgba(29,34,51,0.18);
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 13000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .26s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 36px rgba(29,34,51,0.13);
  padding: 30px 28px 20px 28px;
  max-width: 460px;
  min-width: 280px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 14000;
  animation: cookieModalAppear .37s cubic-bezier(.23,1.2,.4,1);
}
@keyframes cookieModalAppear { from { transform: translateY(60px); opacity: 0;} to { transform: translateY(0); opacity:1;} }
.cookie-modal h2 {
  color: #1D2233;
  font-size: 1.26rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 0;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 1.07rem;
  padding: 10px 0 12px 0;
  border-bottom: 1px solid #F6F4F2;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category .toggle {
  appearance: none;
  width: 38px;
  height: 20px;
  border-radius: 12px;
  background: #ececec;
  position: relative;
  outline: none;
  transition: background .16s;
  cursor: pointer;
}
.cookie-category .toggle:checked {
  background: #A38971;
}
.cookie-category .toggle:before {
  content: '';
  position: absolute;
  left: 2.5px; top: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left .13s;
  box-shadow: 0 1px 2px rgba(29,34,51,0.1);
}
.cookie-category .toggle:checked:before {
  left: 19px;
}
.cookie-category[data-essential="true"] .toggle {
  opacity: 0.6;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.cookie-modal .cookie-btn {
  margin-top: 0;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 18px;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: #1D2233;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 6px;
  transition: background .12s;
  z-index: 14001;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F6F4F2;
  color: #A38971;
}
@media (max-width: 480px) {
  .cookie-modal {
    min-width: 0;
    max-width: 98vw;
    padding: 14px 6px 10px 6px;
    border-radius: 8px;
  }
  .cookie-modal h2 {
    font-size: 1.1rem;
  }
  .cookie-category {
    font-size: 0.97rem;
  }
}

/* ==== UTILITIES (Minimalist rounding, shadows, whitespace) ==== */
.rounded {
  border-radius: 12px !important;
}
.shadow {
  box-shadow: 0 2px 16px rgba(29,34,51,0.08) !important;
}
.white-bg {
  background: #fff !important;
}

/* ===== SCROLLBARS (minimal, subtle) ==== */
::-webkit-scrollbar {
  width: 7px;
  background: #F6F4F2;
}
::-webkit-scrollbar-thumb {
  background: #E6DDCE;
  border-radius: 4px;
}

/* ==== MICRO-INTERACTIONS ==== */
button, .cta-btn, .main-nav a, .mobile-nav a, .cookie-btn {
  transition: color .15s, background .17s, box-shadow .15s;
}

/* ===== DEACTIVATION OF OUTLINES, EXCEPT FOR FOCUS ===== */
:focus-visible {
  outline: 2px solid #A38971;
  outline-offset: 1px;
}

/* ===== TRANSITIONS FOR CONTENT ENTRANCES ===== */
.section, .case-study, .testimonial-card, .blog-preview, .team-member {
  transition: box-shadow .19s, transform .15s;
}
.section:hover, .case-study:hover, .blog-preview:hover, .team-member:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 35px rgba(29,34,51,0.11);
}

/* ====== VISUAL HIERARCHY, SPACING UTILITIES ===== */
.mt-12 { margin-top: 12px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-24 { margin-top: 24px !important; }
.pt-10 { padding-top: 10px !important; }
.pb-10 { padding-bottom: 10px !important; }
.gap-20 { gap: 20px !important; }
.flex-center { justify-content: center !important; align-items: center !important; }

/* ===== PRINT ===== */
@media print {
  header, footer, .cookie-consent-banner, .mobile-menu { display: none !important; }
  section, .section, .case-study, .blog-preview, .testimonials, .testimonial-card, .team-member, .features li { box-shadow: none !important; }
  body { background: #fff; }
}
