/* CSS RESET & BASE SETTINGS */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section { display: block; }
body { line-height: 1; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: color .3s; }
img { max-width: 100%; display: block; border: 0; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, button, textarea, select { font-family: inherit; font-size: inherit; }
*, *:before, *:after { box-sizing: border-box; }

:root {
  --primary: #2C3A47;
  --secondary: #FFFFFF;
  --accent: #A07419;
  --neutral-bg: #F7F5F0;
  --secondary-bg: #D7D3C8;
  --shadow-lg: 0 4px 32px 0 rgba(44, 58, 71, 0.08), 0 1.5px 6px 0 rgba(44, 58, 71, 0.04);
  --radius: 18px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(.77,.04,.31,.91);
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: var(--neutral-bg);
  color: var(--primary);
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; margin-bottom: 12px; }
h3 { font-size: 1.3rem; }

p, ul, ol, li, span, strong { color: var(--primary); font-family: 'Open Sans', Arial, sans-serif; }
strong { font-weight: 700; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 900px) {
  .section { padding: 24px 8px; }
}

/* HEADER/NAVIGATION */
header {
  background: var(--secondary);
  box-shadow: 0 1.5px 12px 0 rgba(44,58,71,0.04);
  z-index: 22;
  position: relative;
}
header .container {
  min-height: 80px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
header img[alt='Chic Scrub Design'] {
  width: 152px;
  height: auto;
  margin-right: 24px;
}
nav {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1rem;
}
nav a {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-weight: 500;
  transition: background .15s, color .23s;
  letter-spacing: .015em;
}
nav a:hover, nav a:focus {
  background: var(--accent);
  color: #fff;
}

.cta {
  min-width: 185px;
  padding: 10px 30px;
  font-weight: 700;
  font-size: 18px;
  border-radius: var(--radius);
  font-family: 'Playfair Display', serif;
  letter-spacing: .03em;
  box-shadow: 0 2px 10px 0 rgba(176,139,79,0.10);
  transition: var(--transition);
  text-align: center;
  display: inline-block;
  margin-left: 12px;
}
.cta.primary {
  background: var(--accent);
  color: #fff;
}
.cta.secondary {
  background: var(--secondary-bg);
  color: var(--primary);
  border: 2.5px solid var(--accent);
}
.cta:hover, .cta:focus {
  transform: translateY(-2px) scale(1.04) rotate(-1.5deg);
  box-shadow: 0 7px 30px 0 rgba(176,139,79,0.18);
  color: #fff !important;
  background: var(--primary);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 101;
  margin-left: 18px;
  transition: background .2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--primary);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  z-index: 111;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: var(--shadow-lg);
  padding: 42px 32px 26px 32px;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.29s cubic-bezier(.68,-0.45,.47,1.43), opacity 0.31s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 32px;
  font-size: 2.5rem;
  color: var(--accent);
  background: none;
  border: none;
  z-index: 112;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 48px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.25rem;
  padding: 10px 0;
  color: var(--primary);
  border-radius: var(--radius-sm);
  transition: background .13s, color .13s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 1040px) {
  header .container nav, .cta.primary { display: none; }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1041px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* HERO STYLES */
section:first-of-type {
  background: linear-gradient(90deg, #F6EFD9 0%, #FFF 100%);
  border-radius: 0 0 var(--radius) var(--radius);
  margin-bottom: 0;
  box-shadow: 0 16px 40px -16px rgba(176,139,79,0.09);
  position: relative;
  overflow: hidden;
}
section:first-of-type h1 {
  font-size: 2.3rem;
  color: var(--accent);
  text-shadow: 0 2px 5px #f4e9c6;
  line-height: 1.2;
  margin-bottom: 12px;
}
section:first-of-type p {
  font-size: 1.18rem;
  color: var(--primary);
}

/* FEATURES, LIST, ICONS */
.content-wrapper ul, .content-wrapper ol {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
}
.content-wrapper ul li, .content-wrapper ol li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.07rem;
  color: var(--primary);
  background: var(--secondary-bg);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: 0 1.5px 6px 0 rgba(44,58,71,0.03);
  margin-bottom: 0;
}
.content-wrapper ul li img, .content-wrapper ol li img {
  width: 24px;
  height: 24px;
  margin-right: 7px;
  filter: drop-shadow(1px 2px 2px #e6dcc2d2);
}

/* CARDS AND FLEX UTILITIES */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--secondary-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.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: 20px; }
  .content-grid { flex-direction: column; gap: 16px; }
}

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

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: 0 4px 22px 0 rgba(44,58,71,0.08), 0 1.5px 6px 0 rgba(44,58,71,0.03);
  border-left: 5px solid var(--accent);
  margin-bottom: 20px;
  min-width: 0;
  max-width: 700px;
}
.testimonial-card p {
  font-size: 1.13rem;
  color: var(--primary);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 0;
  letter-spacing: 0.01em;
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--primary);
  font-family: 'Open Sans', Arial, sans-serif;
}

/* TEXT SECTION/DETAIL BLOCKS */
.text-section {
  background: var(--secondary-bg);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-size: 1.07rem;
  color: var(--primary);
  margin: 0 0 12px 0;
  box-shadow: 0 1.5px 6px 0 rgba(44,58,71,0.03);
}
.text-section ul {
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.text-section h3 {
  font-size: 1.14rem;
  margin: 6px 0 8px 0;
}

/* MAP PLACEHOLDER */
.map-placeholder {
  background: var(--neutral-bg);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 18px;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  box-shadow: 0 1.5px 6px 0 rgba(44,58,71,0.04);
}
.map-placeholder img {
  width: 30px; height: 30px; margin-right: 3px;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: #fff;
  padding: 33px 0 25px 0;
  box-shadow: 0 -6px 30px -10px #ded7c1b6;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
footer nav {
  gap: 22px;
}
footer nav a {
  color: var(--secondary);
  font-size: 1.02rem;
  transition: color .18s;
  opacity: 0.88;
}
footer nav a:hover, footer nav a:focus {
  color: var(--accent);
  background: transparent;
}
footer img {
  width: 112px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 1.5px 6px 0 #fff3;
  padding: 6px 15px;
}
footer .text-section {
  background: none;
  color: #fff;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

/* LINKS, BUTTONS & INTERACTIONS */
a, button {
  outline: none;
  transition: var(--transition);
}
a:focus-visible, button:focus-visible {
  outline: 2px dashed var(--accent);
  outline-offset: 2px;
}

/* HOVER EFFECTS & MICRO-INTERACTIONS */
.section, .card, .testimonial-card, .feature-item {
  transition: box-shadow .27s, transform .23s;
}
.section:hover, .card:hover, .testimonial-card:hover, .feature-item:hover {
  box-shadow: 0 6px 32px 0 rgba(176,139,79,0.09);
  transform: translateY(-2px) scale(1.01);
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1200;
  width: 100vw;
  background: #fffbe9;
  color: var(--primary);
  box-shadow: 0 -4px 20px #d7d3c844;
  padding: 23px 12px 17px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 1.02rem;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: transform 0.31s, opacity 0.21s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}
.cookie-banner .cookie-btn {
  margin-left: 10px;
  margin-right: 8px;
  padding: 8px 18px;
  background: var(--secondary-bg);
  color: var(--primary);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--accent);
  font-size: 1rem;
  font-weight: 600;
  transition: background .19s, color .19s, border .2s;
}
.cookie-banner .cookie-btn.accept {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.cookie-banner .cookie-btn.reject {
  background: #e1ded6;
  border-color: #b08b4f77;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: var(--primary);
  border: 1.5px dashed var(--accent);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(44,58,71,0.14);
  z-index: 2012;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .25s;
}
.cookie-modal-overlay.hidden { opacity: 0; pointer-events: none; }
.cookie-modal {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 28px 0 rgba(176,139,79,0.12);
  padding: 36px 24px 18px 26px;
  width: 98%;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 2018;
  animation: scalein .25s cubic-bezier(.77,.55,.23,1.51);
}
@keyframes scalein {
  from { opacity: 0; transform: scale(.91); }
  to   { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  color: var(--accent);
  margin-bottom: 8px;
  font-size: 1.19rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 13px;
  background: var(--secondary-bg);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.cookie-category input[type=checkbox] {
  width: 21px;
  height: 21px;
  accent-color: var(--accent);
}
.cookie-category .essential {
  color: #aaa;
  font-style: italic;
}
.cookie-modal .modal-btns {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}
.cookie-modal .modal-btn {
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--accent);
  background: var(--secondary-bg);
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  transition: background .17s, color .17s;
}
.cookie-modal .modal-btn.primary {
  background: var(--accent);
  color: #fff;
}
.cookie-modal .modal-btn:hover, .cookie-modal .modal-btn:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.cookie-modal .close-modal {
  position: absolute;
  top: 12px; right: 15px;
  font-size: 1.8rem;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
}

/* RESPONSIVE LAYOUT */
@media (max-width: 900px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
    max-width: 98vw;
    gap: 0;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  nav { gap: 14px; flex-wrap: wrap; }
  .cta { min-width: unset; font-size: 1rem; padding: 8px 14px; margin-left: 0; }
}
@media (max-width: 660px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.32rem; }
  .section, section { padding: 18px 3px; margin-bottom: 30px; border-radius: var(--radius-sm); }
  .card, .testimonial-card { padding: 16px 8px; border-radius: var(--radius-sm); }
  .content-wrapper { gap: 13px; }
  .feature-item { padding: 6px 5px; }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    font-size: .95rem;
  }
  .cookie-modal { padding: 18px 6px; }
}

/* ARTISTIC/CREATIVE EFFECTS */
h1, h2, h3 {
  font-variation-settings: 'wght' 700;
  position: relative;
  letter-spacing: 0.012em;
}
h1:after, h2:after {
  content: '';
  display: block;
  width: 42px;
  height: 6px;
  border-radius: 6px;
  background: var(--accent);
  margin-top: 9px;
  opacity: .68;
  transition: width .31s;
}
h1:hover:after, h2:hover:after {
  width: 60px;
  background: var(--primary);
}

.cta.primary { box-shadow: 0 8px 32px var(--accent)11, 0 3px 10px var(--accent)09; }
.cta.secondary { box-shadow: 0 2px 8px var(--primary)06; }
.card:hover, .feature-item:hover {
  background: #fffbe9;
}

/* MODERN SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
  background: var(--secondary-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 16px;
  border: 2px solid #f3e2bb;
}

/* SELECTION */
::selection {
  background: var(--accent);
  color: #fff;
}

/* Z-INDEX UTILITIES */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay { z-index: 111; }

/* HIDE/SHOW UTILITIES */
.hide, .hidden { display: none !important; }

/* END OF CSS */
