/* ============================================== */
/*                CSS RESET & BASE                */
/* ============================================== */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F7F7F2;
  color: #343A40;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  background-color: transparent;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* ============================================== */
/*                CUSTOM PROPERTIES                */
/* ============================================== */
:root {
  --color-primary: #343A40;
  --color-secondary: #E5A33D;
  --color-accent: #F7F7F2;
  --color-success: #93AD91;
  --color-leaf: #6B8A55;
  --color-terracotta: #B48C5C;
  --color-earth: #836953;
  --color-brown-bg: #EFE8DE;
  --color-card-bg: #FFFFFF;
  --color-text-main: #343A40;
  --color-text-light: #746955;
  --color-card-border: #E3D5C3;

  --radius-large: 26px;
  --radius-medium: 16px;
  --radius-small: 8px;
  --shadow-soft: 0 2px 16px rgba(52, 58, 64, 0.10);
  --shadow-strong: 0 4px 24px rgba(52, 58, 64, 0.16);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', Arial, sans-serif;
  --transition-base: 0.3s cubic-bezier(.4, 1.4, .5, 1);
}

/* ============================================== */
/*                   TYPOGRAPHY                   */
/* ============================================== */
body {
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--color-accent);
  color: var(--color-text-main);
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--color-primary);
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: var(--color-earth);
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

p, li, span, label, blockquote, .subheadline {
  font-family: var(--font-body);
  color: var(--color-text-main);
  line-height: 1.65;
  font-size: 1rem;
}
blockquote {
  border-left: 6px solid var(--color-secondary);
  padding-left: 16px;
  margin: 18px 0;
  color: var(--color-leaf);
  font-style: italic;
  background: var(--color-brown-bg);
  border-radius: var(--radius-medium);
}
strong {
  color: var(--color-earth);
}

.subheadline {
  font-size: 1.15rem;
  color: var(--color-text-light);
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-weight: 500;
}
.center {
  text-align: center;
  justify-content: center;
  align-items: center;
}

/* ============================================== */
/*                    CONTAINER                   */
/* ============================================== */
.container {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.content-wrapper {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.text-section {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-wrapper, .text-section {
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* ============================================== */
/*               GLOBAL SECTIONS                  */
/* ============================================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
main > section:last-child, main > section:last-of-type {
  margin-bottom: 0;
}

/* ============================================== */
/*                   HEADER                       */
/* ============================================== */
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color-accent);
  box-shadow: 0 1px 8px rgba(52,58,64,.06);
  z-index: 50;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 78px;
  gap: 18px;
}
header nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
header nav a {
  padding: 8px 2px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-earth);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  border-bottom: 2px solid transparent;
  transition: color var(--transition-base), border-color var(--transition-base);
  border-radius: 0;
}
header nav a:hover,
header nav a:focus {
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  background: var(--color-leaf);
  color: #FFF;
  border-radius: 32px 16px 32px 16px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  border: none;
  transition: background var(--transition-base), color var(--transition-base), box-shadow var(--transition-base);
}
.cta-button:hover,
.cta-button:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: var(--shadow-strong);
}
.mobile-menu-toggle {
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--color-leaf);
  display: none;
  padding: 8px 10px;
  border-radius: var(--radius-small);
  transition: background 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-leaf);
  color: #fff;
}
@media (max-width: 980px) {
  header nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}

/* ============================================== */
/*                MOBILE MENU                     */
/* ============================================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(244,243,239, 0.98);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100vw);
  transition: transform 0.45s cubic-bezier(0.32, 1.32, 0.5, 1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--color-leaf);
  color: #FFF;
  font-size: 2rem;
  margin: 28px 30px 20px 0;
  border: none;
  border-radius: var(--radius-large);
  padding: 8px 18px;
  transition: background 0.2s, color 0.2s;
  z-index: 1;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 500;
  padding: 22px 40px;
  border-bottom: 1px solid var(--color-card-border);
  color: var(--color-primary);
  background: transparent;
  transition: background 0.2s, color 0.2s;
  border-radius: 0;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: var(--color-leaf);
  color: #fff;
  outline: none;
}
@media (max-width: 980px) {
  .mobile-menu {
    display: flex;
  }
}

/* ============================================== */
/*                      MAIN                      */
/* ============================================== */
main {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* --- Section Spacing: already handled above --- */
/* --- .section rules could be used if present --- */

/* ============================================== */
/*                    CARDS & LISTS               */
/* ============================================== */
.feature-grid, .trend-list, .style-tips-list, .outfit-scenarios-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
}
.feature-grid li, .trend-list li, .style-tips-list li, .outfit-scenarios-list li {
  background: var(--color-card-bg);
  border-radius: var(--radius-medium);
  padding: 20px 18px 16px 18px;
  box-shadow: var(--shadow-soft);
  flex: 1 1 290px;
  min-width: 240px;
  max-width: 330px;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--color-card-border);
  align-items: flex-start;
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}
.feature-grid li img {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  filter: grayscale(0.25) contrast(1.2);
}
.feature-grid li:hover,
.trend-list li:hover,
.style-tips-list li:hover {
  box-shadow: var(--shadow-strong);
  border-color: var(--color-secondary);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service-item {
  background: var(--color-card-bg);
  border-radius: var(--radius-medium);
  padding: 20px 18px 18px 18px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-card-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}
.service-item h3 {
  color: var(--color-leaf);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-item h3 span {
  color: var(--color-secondary);
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.service-item:hover {
  box-shadow: var(--shadow-strong);
  border-color: var(--color-secondary);
}

.team-member {
  background: var(--color-card-bg);
  border-radius: var(--radius-medium);
  padding: 20px 18px 16px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-card-border);
  transition: box-shadow var(--transition-base);
}
.team-member h3 {
  color: var(--color-earth);
  font-size: 1.04rem;
}
.team-member ul {
  color: var(--color-leaf);
  margin-top: 12px;
}
.team-member:hover {
  box-shadow: var(--shadow-strong);
}

.outfit-recommendations,
.dos-and-donts,
.styling-tips,
.accessory-ideas,
.trend-highlights,
.trend-tips {
  background: var(--color-brown-bg);
  border-radius: var(--radius-medium);
  padding: 18px 16px 14px 16px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-card-border);
}
.outfit-recommendations h3, .dos-and-donts h3, .styling-tips h3, .accessory-ideas h3, .trend-highlights h3, .trend-tips h3 {
  color: var(--color-leaf);
  margin-bottom: 10px;
}

/* ============================================== */
/*                  TESTIMONIALS                  */
/* ============================================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  min-width: 220px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px 30px 18px 30px;
  box-shadow: var(--shadow-soft);
  border: 1.5px solid var(--color-card-border);
  color: var(--color-primary);
  font-size: 1.08rem;
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}
.testimonial-card p {
  font-style: italic;
  color: var(--color-leaf);
  font-size: 1.05rem;
}
.testimonial-card span {
  font-size: 0.96rem;
  color: var(--color-secondary);
  font-weight: 700;
  font-family: var(--font-body);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-strong);
  border-color: var(--color-secondary);
}

/* ============================================== */
/*                      FOOTER                    */
/* ============================================== */
footer {
  background: var(--color-card-bg);
  border-top: 3.5px solid var(--color-leaf);
  margin-top: 60px;
  padding: 38px 0 16px 0;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 140px;
}
footer nav a {
  font-size: 1rem;
  color: var(--color-leaf);
  font-family: var(--font-body);
  transition: color .18s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-secondary);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.98rem;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-earth);
  font-family: var(--font-body);
}
.footer-contact img {
  width: 20px;
  height: 20px;
  filter: grayscale(0.2) contrast(1.2) brightness(0.9);
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================== */
/*                COOKIES CONSENT                 */
/* ============================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: var(--color-card-bg);
  box-shadow: 0 -4px 28px rgba(70, 87, 67, 0.09);
  padding: 20px 16px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  border-top: 2.5px solid var(--color-leaf);
  animation: banner-slide-in 0.55s cubic-bezier(.38,1.3,.6,1.06) forwards;
}
@keyframes banner-slide-in {
  from { transform: translateY(150%); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  color: var(--color-text-main);
  font-size: 1rem;
  text-align: center;
}
.cookie-actions {
  display: flex;
  gap: 20px;
  margin-top: 2px;
}
.cookie-btn {
  padding: 10px 24px;
  border-radius: var(--radius-medium);
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .22s;
  box-shadow: var(--shadow-soft);
}
.cookie-btn.accept {
  background: var(--color-leaf);
  color: #fff;
}
.cookie-btn.accept:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-btn.reject {
  background: #E3D5C3;
  color: var(--color-leaf);
}
.cookie-btn.reject:hover {
  background: #E5A33D22;
}
.cookie-btn.settings {
  background: var(--color-card-bg);
  color: var(--color-brown-bg);
  border: 1.5px solid var(--color-leaf);
}
.cookie-btn.settings:hover {
  background: var(--color-leaf);
  color: #fff;
}

/* Cookie settings MODAL */
.cookie-modal {
  position: fixed;
  z-index: 2200;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(79, 85, 73, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.24s;
  pointer-events: none;
  opacity: 0;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: var(--color-card-bg);
  border-radius: var(--radius-large);
  padding: 33px 25px 25px 25px;
  min-width: 320px;
  max-width: 97vw;
  box-shadow: 0 8px 36px rgba(61, 64, 39, 0.11);
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.25rem;
  color: var(--color-leaf);
  margin-bottom: 17px;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 0;
  border-bottom: 1.5px solid #e3d5c399;
}
.cookie-modal-category:last-child {
  border-bottom: none;
}
.cookie-modal-category span {
  font-weight: 500;
  color: var(--color-earth);
  font-size: 1rem;
}
.cookie-toggle {
  margin-left: 12px;
}
.cookie-toggle input[type="checkbox"],
.cookie-toggle input[type="radio"] {
  width: 24px;
  height: 24px;
  accent-color: var(--color-leaf);
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 20px;
  background: none;
  color: var(--color-leaf);
  font-size: 1.5rem;
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s;
  z-index: 1;
}
.cookie-modal-close:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}

@media (max-width: 580px) {
  .cookie-modal-content {
    min-width: 94vw;
    padding: 22px 7vw 22px 7vw;
  }
}

@media (max-width: 600px) {
  .cookie-banner {
    padding: 13px 3vw 13px 3vw;
    flex-direction: column;
    gap: 10px;
  }
  .cookie-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
}

/* ============================================== */
/*                FLEX LAYOUTS PATTERNS           */
/* ============================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-card-bg);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 900px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 21px;
  }
}

/* ============================================== */
/*                MISC: FORMATTING                */
/* ============================================== */
ul {
  list-style-type: disc;
  margin-left: 23px;
}
ul > li {
  margin-bottom: 8px;
}
li strong, .footer-contact strong {
  color: var(--color-leaf);
}

/* ============================================== */
/*                  UTILITIES                     */
/* ============================================== */
.mb-0 {
  margin-bottom: 0 !important;
}
.pt-0 {
  padding-top: 0 !important;
}
/* for extra breathing room */
.section-padded {
  padding: 50px 5vw !important;
}

/* Hide visually but accessible  */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  border: 0 !important;
}

/* ============================================== */
/*            RESPONSIVE FONT SIZES               */
/* ============================================== */
@media (max-width: 640px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.22rem; }
  .subheadline { font-size: 1rem; }
}

/* ============================================== */
/*       NATURE ORGANIC BRANDING ELEMENTS         */
/* ============================================== */
/* --- Authentic organic fx: subtle shapes --- */
.section {
  position: relative;
  overflow: visible;
}
.section::before,
.section::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.11;
  border-radius: 42% 58% 40% 60%/53% 34% 66% 47%;
}
.section:nth-of-type(even)::before {
  background: var(--color-leaf);
  width: 190px; height: 90px;
  left: -50px; top: -32px;
  opacity: 0.09;
}
.section:nth-of-type(odd)::before {
  background: var(--color-secondary);
  width: 90px; height: 60px;
  right: -23px; top: -20px;
  opacity: 0.07;
}
.section:nth-of-type(odd)::after {
  background: var(--color-brown-bg);
  width: 120px; height: 50px;
  left: -20px; bottom: -32px;
  opacity: 0.08;
}
.section:nth-of-type(even)::after {
  background: var(--color-leaf);
  width: 76px; height: 48px;
  right: -18px; bottom: -28px;
  opacity: 0.09;
}
@media (max-width: 700px) {
  .section::before, .section::after {
    width: 55vw !important; max-width: 160px !important; height: 26vw !important;
    left: unset !important; right: unset !important;
    top: unset !important; bottom: unset !important;
  }
}

/* ============================================== */
/*         TRANSITIONS & MICRO-INTERACTIONS       */
/* ============================================== */
a, button, .cta-button, .card, .service-item, .testimonial-card {
  transition: background var(--transition-base), color var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

@media (max-width: 520px) {
  header .container {
    gap: 8px;
    min-height: 56px;
  }
  section, .section {
    padding: 24px 2vw;
    margin-bottom: 32px;
  }
}

/* ============================================== */
/*            END OF COMPREHENSIVE CSS            */
/* ============================================== */
