/* =====================
   CSS RESET & NORMALIZATION
   ===================== */
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #F7F3E8;
  color: #30415D;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #30415D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #a53544;
  text-decoration: underline;
}
ul { list-style: none; }
ol { list-style-position: inside; }
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
:focus { outline: 2px solid #FFC7CE; outline-offset: 2px; }

/* ======================
   GLOBAL BRAND COLORS
   ====================== */
:root {
  --color-primary: #30415D;
  --color-secondary: #FFC7CE;
  --color-accent: #F7F3E8;
  --color-dark: #22223B;
  --color-text: #30415D;
  --color-btn-text: #30415D;
  --color-btn-bg: #FFC7CE;
  --color-btn-bg-dark: #30415D;
  --color-btn-text-dark: #ffffff;
  --color-muted: #a0a5b8;
  --color-shadow: rgba(48, 65, 93, 0.13);
  --color-border: #e6e2dc;
  --color-white: #fff;
}

/* =========================
   TYPOGRAPHY
   ========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
  letter-spacing: 0.01em;
  color: var(--color-dark);
}
h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 10px;
}
p {
  font-size: 1rem;
  margin-bottom: 18px;
  color: var(--color-text);
}
strong {
  font-weight: bold;
}
.section strong, .content-wrapper strong, li strong, div strong {
  color: var(--color-primary);
  font-weight: 600;
}

/* =========================
   GLOBAL CONTAINERS & SECTION LAYOUTS
   ========================== */
.container {
  width: 100%;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.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;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: var(--color-white);
  box-shadow: 0 2px 12px var(--color-shadow);
  border-radius: 12px;
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  min-width: 270px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.18s, border-color 0.22s;
}
.card:hover {
  box-shadow: 0 4px 24px rgba(48, 65, 93, 0.18);
  border-color: var(--color-secondary);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px var(--color-shadow);
  padding: 20px;
  margin-bottom: 20px;
  color: var(--color-text);
}
.testimonial-card span {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--color-primary);
  font-style: italic;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

/* Features Section (custom list icons, spacing) */
.features ul, .benefits ul, .collections-features ul, .service-list ul, .about ul, .giftcard-features ul,
.contact-info ul, .brand-values ul, .stylistic-services ul, .directions ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.features ul li, .benefits ul li, .collections-features ul li, .service-list ul li, .about ul li, .giftcard-features ul li,
.contact-info ul li, .brand-values ul li, .stylistic-services ul li, .directions ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--color-text);
  background: transparent;
  padding: 10px 0 10px 0;
  border-radius: 7px;
}
.features ul li img, .benefits ul li img, .giftcard-features ul li img, .about ul li img,
.collections-features ul li img, .brand-values ul li img, .directions ul li img {
  width: 26px;
  height: 26px;
  margin-right: 0;
}

/* =======================
   BUTTONS & CTAS
   ======================= */
.cta-btn,
button,
input[type="button"], input[type="submit"], .mobile-menu-toggle, .mobile-menu-close {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 22px;
  border: none;
  padding: 12px 36px;
  color: var(--color-btn-text);
  background: var(--color-btn-bg);
  box-shadow: 0 2px 7px var(--color-shadow);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  margin: 6px 0;
  display: inline-block;
  letter-spacing: 0.01em;
}
.cta-btn:hover, .cta-btn:focus,
button:hover, button:focus,
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus,
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-primary);
  color: var(--color-btn-text-dark);
  box-shadow: 0 5px 20px var(--color-shadow);
}
.cta-btn:active {
  background: #a53544;
}

/* Standout variant on dark bg */
.cta-btn.secondary {
  background: var(--color-primary);
  color: var(--color-btn-text-dark);
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}

/* =========================
   HEADER + NAVIGATION
   ========================= */
header {
  background: var(--color-accent);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  z-index: 10;
}
header .container {
  padding-top: 20px;
  padding-bottom: 20px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
header img {
  height: 44px;
  width: auto;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}
header nav a {
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 3px 0;
  transition: color 0.15s;
}
header nav a:hover, header nav a:focus {
  color: var(--color-secondary);
  text-decoration: none;
}
header .cta-btn {
  margin-left: 18px;
}

/* Burger menu (hidden on desktop) */
.mobile-menu-toggle {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  border: none;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.17s, color 0.17s;
  z-index: 31;
}
.mobile-menu-toggle:active {
  background: var(--color-secondary);
  color: var(--color-primary);
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
  background: var(--color-accent);
  min-height: 260px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
}
.hero .container {
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 14px;
  line-height: 1.13;
}
.hero p {
  font-size: 1.18rem;
  color: var(--color-dark);
  margin-bottom: 16px;
}
.hero .cta-btn {
  margin-top: 15px;
  font-size: 1.1rem;
}

/* =======================
   FOOTER
   ======================= */
footer {
  background: var(--color-accent);
  border-top: 1px solid var(--color-border);
  padding: 28px 0 18px 0;
}
footer .container {
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
footer img {
  height: 38px;
  margin-bottom: 8px;
}
footer nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
footer nav a {
  color: var(--color-muted);
  font-size: 0.97rem;
  transition: color 0.16s;
  text-decoration: none;
}
footer nav a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}
footer div {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-top: 3px;
  text-align: center;
}

/* =====================
   LISTS, TABLES, LEGAL
   ===================== */
ol { padding-left: 16px; margin-bottom: 16px; }
ol li { margin-bottom: 8px; }
.legal {
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--color-shadow);
  padding: 36px 24px;
  margin-bottom: 36px;
}

/* =====================
   RESPONSIVE LAYOUTS (MOBILE-FIRST)
   ===================== */
@media (max-width: 1060px) {
  .container { max-width: 99vw; }
}
@media (max-width: 900px) {
  .container { padding-left: 12px; padding-right: 12px; }
  .content-wrapper { max-width: 98vw; padding: 0; }
  .card { min-width: 200px; padding: 20px 12px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }
  .section, section { padding: 24px 6px; margin-bottom: 32px; }
  .container { padding-left: 6px; padding-right: 6px; }
  .content-wrapper { padding: 0 2px; gap: 12px; }
  .card-container, .content-grid { gap: 10px; }
  .card { min-width: 160px; }
  header .container { flex-direction: row; gap: 4px; }
}
@media (max-width: 700px) {
  .container { max-width: 100vw; }
  .card { padding: 14px 4px; }
  .card-container, .content-grid { gap: 6px; }
  .testimonial-card { padding: 13px; }
}
@media (max-width: 560px) {
  .container, .content-wrapper { max-width: 100vw; padding-left: 0; padding-right: 0; }
  .section, section { padding: 16px 1px; }
  .card { min-width: 85vw; padding: 10px 2px; font-size: 0.95rem; }
  .testimonial-card { font-size: 0.97rem; }
  .card-container, .content-grid { gap: 2px; }
}

/* Flex column for mobile */
@media (max-width: 900px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
}
@media (max-width: 768px) {
  header nav, footer nav { gap: 13px; }
  .about .content-wrapper > div, .about-brand .content-wrapper > div, 
  .brand-values .content-wrapper > div, .directions {
    gap: 6px;
  }
}
/* Responsive show/hide of burger and main nav */
@media (max-width: 980px) {
  header nav { display: none !important; }
  .mobile-menu-toggle { display: flex !important; }
  header .cta-btn { display: none !important; }
}
@media (min-width: 981px) {
 .mobile-menu-toggle { display: none !important; }
 .mobile-menu { display: none !important; }
}

/* =============================
   MOBILE MENU OVERLAY/SLIDE MENU
   ============================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(48, 65, 93, 0.92);
  z-index: 1111;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.93,.01,.21,.99);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  margin: 24px 22px 18px 0;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 2.1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  gap: 14px;
  padding: 0 34px;
}
.mobile-nav a {
  color: var(--color-white);
  font-size: 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin: 0 0 6px 0;
  letter-spacing: 0.01em;
  padding: 13px 0;
  border-radius: 7px;
  width: 100%;
  text-align: right;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}

@media (max-width: 357px) {
  .mobile-nav a { font-size: 1.01rem; }
}

/* =======================
   COOKIE CONSENT BANNER
   ======================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9000;
  background: var(--color-accent);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 18px var(--color-shadow);
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 12px 15px 12px 15px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-text);
  transition: transform 0.27s cubic-bezier(.93,.01,.21,.99), opacity 0.23s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1;
  min-width: 50px;
  margin-right: 10px;
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  padding: 10px 18px;
  font-size: 0.97rem;
  border-radius: 19px;
  border: none;
  cursor: pointer;
  background: var(--color-primary);
  color: var(--color-btn-text-dark);
  box-shadow: 0 2px 5px var(--color-shadow);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cookie-banner button.secondary {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}

/* Cookies settings modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(48,65,93,0.26);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  border-radius: 12px;
  max-width: 420px;
  width: 89vw;
  box-shadow: 0 4px 22px var(--color-shadow);
  padding: 32px 26px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
  animation: fadeInModal 0.36s cubic-bezier(.37,1.33,.23,1) both;
}
@keyframes fadeInModal {
  from { transform: scale(0.97) translateY(22px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.29rem;
  margin-bottom: 10px;
  color: var(--color-primary);
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  flex: 1;
  color: var(--color-primary);
}
.cookie-modal .cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-primary);
  margin-left: 5px;
  margin-top: 2px;
}
.cookie-modal .cookie-category input[disabled] {
  filter: grayscale(1) opacity(0.45);
  pointer-events: none;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 6px;
}
.cookie-modal button {
  padding: 10px 20px;
  border-radius: 18px;
  font-size: 1rem;
  background: var(--color-primary);
  color: var(--color-btn-text-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.cookie-modal button.secondary {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}

@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; gap: 12px; font-size: 0.97rem; }
  .cookie-modal { padding: 18px 8px; }
  .cookie-modal h3 { font-size: 1.08rem; }
  .cookie-modal .cookie-category label { font-size: 0.99rem; }
}

/* =====================
   MISC/ELEMENT UTILITIES
   ===================== */
.bg-accent { background: var(--color-accent); }
.bg-primary { background: var(--color-primary); color: var(--color-btn-text-dark); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--color-muted) !important; }
.rounded { border-radius: 14px; }
.shadow-sm { box-shadow: 0 2px 7px var(--color-shadow); }
.shadow-lg { box-shadow: 0 8px 28px var(--color-shadow); }
.mt-4 { margin-top: 24px; }
.mt-2 { margin-top: 12px; }
.mb-2 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 24px; }

/* =====================
   SPECIAL STYLES FOR BLOCKS
   ===================== */
.services-overview ul li span,
.service-list ul li span {
  display: inline-block;
  margin-left: 8px;
  color: var(--color-muted);
  font-size: 0.99em;
}

/* Contact info icons */
.contact-info div img, .contact .content-wrapper > div > img {
  width: 22px; height: 22px; vertical-align: middle; margin-right: 6px;
  filter: grayscale(25%) opacity(0.7);
}
.contact-info a, .contact .content-wrapper a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color 0.13s;
}
.contact-info a:hover, .contact .content-wrapper a:hover {
  color: var(--color-secondary);
}

/* =======================
   CARD GAPS, SPACING ENFORCEMENT
   ======================= */
.section > *, .content-wrapper > * {
  margin-bottom: 20px;
}
.section > *:last-child, .content-wrapper > *:last-child {
  margin-bottom: 0;
}

.card-container > *, .content-grid > *, .testimonial-card + .testimonial-card, .feature-item + .feature-item {
  margin-right: 0;
  margin-bottom: 20px;
}

/* =======================
   SHADOWS, RADIUS, TRANSITIONS
   ======================= */
.card, .testimonial-card, .hero, .legal, .cookie-modal {
  box-shadow: 0 2px 8px var(--color-shadow);
  border-radius: 12px;
}

.card, .testimonial-card, .cookie-modal {
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover, .testimonial-card:hover, .feature-item:hover {
  box-shadow: 0 4px 16px var(--color-shadow);
  border-color: var(--color-secondary);
}

/* ======================
   FOCUS, HOVER, MICRO-INTERACTIONS
   ======================= */
.card:focus-within, .testimonial-card:focus-within {
  border-color: var(--color-secondary);
  box-shadow: 0 4px 21px var(--color-shadow);
}
button:active, .cta-btn:active {
  box-shadow: none;
  opacity: 0.91;
}

/* ===============================
   SCROLLBARS (for consistency)
   =============================== */
body::-webkit-scrollbar {
  width: 8px;
  background: var(--color-accent);
}
body::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 6px;
}

/* ======================
   PRINT STYLES (optional, basic)
   ====================== */
@media print {
  header, footer, .cookie-banner, .mobile-menu, .mobile-menu-toggle { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  .card, .testimonial-card, .legal { box-shadow: none !important; border: solid 1px #aaa !important; }
}

/* ==========================
   END ELEGANT CLASSIC STYLES
   ========================== */