/* Flesh Assets: Minimalist Modern Responsive CSS (Flexbox-Only) */

/* === CSS RESET & BASELINE === */
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 {
  font-size: 16px;
}

body {
  font-family: "Arial", Arial, sans-serif;
  font-size: 16px;
  color: #232B2B;
  background: #fff;
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}

:focus {
  outline: 2px solid #B5987B;
  outline-offset: 2px;
}

/* === TYPOGRAPHY HIERARCHY === */
h1, .h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.16;
  margin-bottom: 18px;
}
h2, .h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.18;
}
h3, .h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.22;
}
h4, .h4 {
  font-family: "Arial", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
p, li {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #232B2B;
}
.subheadline {
  font-size: 1.225rem;
  color: #B5987B;
  font-weight: 400;
  margin-bottom: 26px;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.name {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1rem;
  color: #B5987B;
}

.confirmation-text {
  font-size: 1.15rem;
  color: #232B2B;
  margin-bottom: 32px;
}

/* === CONTAINER & LAYOUTS - FLEX ONLY === */
.container {
  max-width: 1050px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Section spacing (MANDATORY) */
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: #fff;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  section {
    padding: 30px 0 30px 0;
    margin-bottom: 40px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* === HEADER & NAVIGATION === */
header {
  background: #fff;
  border-bottom: 1px solid #E5E3E8;
  position: sticky;
  top: 0;
  z-index: 80;
}

header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo img {
  height: 34px;
}

.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-left: 36px;
}

.main-nav a {
  font-size: 1rem;
  font-weight: 400;
  padding: 4px 0;
  color: #232B2B;
  opacity: 0.84;
  letter-spacing: 0.01em;
  border-bottom: 2px solid transparent;
  transition: opacity 0.15s, border 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #B5987B;
  opacity: 1;
  border-bottom: 2.5px solid #B5987B;
}

.btn-primary {
  background: #232B2B;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 24px;
  margin-left: 30px;
  box-shadow: 0 2px 8px rgba(35,43,43,0.04);
  transition: background 0.18s, color 0.18s, box-shadow 0.20s;
  display: inline-block;
  letter-spacing: 0.01em;
}
.btn-primary:hover, .btn-primary:focus {
  background: #B5987B;
  color: #fff;
  box-shadow: 0 4px 20px rgba(181,152,123,0.11);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 14px;
    margin-left: 0;
  }
  .btn-primary {
    margin-left: 12px;
    padding: 10px 18px;
    font-size: 0.98rem;
  }
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #232B2B;
  margin-left: 18px;
  cursor: pointer;
  z-index: 120;
}
@media (max-width: 900px) {
  .main-nav, header .btn-primary { display: none; }
  .mobile-menu-toggle { display: block; }
}

.mobile-menu {
  position: fixed;
  left: 0; top: 0; bottom: 0; right: 0;
  background: #fff;
  z-index: 200;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.45,.06,.52,.95);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #232B2B;
  background: none;
  border: none;
  align-self: flex-end;
  margin: 26px 24px 12px 0;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
  padding: 12px 32px 0 32px;
}
.mobile-nav a {
  font-size: 1.15rem;
  font-family: 'Playfair Display', serif;
  padding: 10px 0;
  color: #232B2B;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border 0.15s;
  min-width: 190px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #B5987B;
  border-bottom: 1.5px solid #B5987B;
}

@media (max-width: 768px) {
  .mobile-menu {
    padding-left: 0;
    padding-right: 0;
  }
  .mobile-nav {padding-left: 18px; padding-right: 8px;}
}

/* === SECTIONS (MANDATORY SPACING PATTERNS) === */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  position: relative;
}
@media (max-width: 768px) {
  .section, section { margin-bottom: 36px; padding: 28px 6px; }
}

.feature-grid,
.services-list,
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}

.feature-grid > div,
.services-list > .service-item,
.blog-grid > .blog-post {
  background: #fff;
  border: 1px solid #E5E3E8;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(35,43,43,0.05);
  padding: 26px 22px;
  min-width: 210px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.22s, border 0.15s;
}
.feature-grid > div:hover,
.services-list > .service-item:hover,
.blog-grid > .blog-post:hover {
  box-shadow: 0 4px 24px rgba(181,152,123,0.08);
  border-color: #c7bfb6;
}

@media (max-width:768px) {
  .feature-grid,
  .services-list,
  .blog-grid {
    gap: 18px;
  }
  .feature-grid > div,
  .services-list > .service-item,
  .blog-grid > .blog-post {
    min-width: unset;
    flex: 1 1 100%;
    padding: 18px 12px;
  }
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.notice {
  background: #E5E3E8;
  color: #232B2B;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 1rem;
  margin-top: 10px;
  margin-bottom: 10px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1.5px 9px rgba(35,43,43,.05);
  border: 1px solid #E5E3E8;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s;
}

/* Testimonials Slider/Cards */
.testimonial-slider, .testimonial-group {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  min-width: 250px;
  background: #fff;
  border: 1px solid #E5E3E8;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(35,43,43,.07);
  color: #232B2B;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border 0.15s;
}
.testimonial-card p {
  margin-bottom: 0;
  color: #232B2B;
}
.testimonial-card .name {
  color: #B5987B;
  margin-top: 4px;
  font-size: 0.98rem;
}
.testimonial-card:hover, .testimonial-card:focus {
  border-color: #bfa68c;
  box-shadow: 0 6px 26px rgba(181,152,123,0.09);
}

@media (max-width:650px) {
  .testimonial-slider {
    gap: 12px; flex-direction: column;
  }
  .testimonial-card {
    min-width: unset;
    padding: 16px 10px;
  }
}

/* Content Grids */
.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) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

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

/* Blog Categories, Highlights */
.category-list, .highlighted-posts {
  margin-top: 32px;
  margin-bottom: 20px;
  background: #F7F6F9;
  border-radius: 13px;
  padding: 14px 20px 8px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.category-list h4, .highlighted-posts h4 {
  margin-bottom: 7px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #232B2B;
}
.category-list ul, .highlighted-posts ul {
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
}
.category-list li, .highlighted-posts li {
  font-size: 0.98rem;
  color: #B5987B;
  background: #fff;
  border-radius: 8px;
  padding: 3px 10px;
  margin-right: 5px;
  box-shadow: none;
}

/* === PRICE, BADGES, MARKERS === */
.service-price {
  font-family: 'Playfair Display', serif;
  color: #B5987B;
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 5px;
  margin-bottom: 0;
  letter-spacing: 0.03em;
}

/* === FOOTER === */
footer {
  background: #232B2B;
  color: #fff;
  padding-top: 36px;
  padding-bottom: 36px;
  border-top: 1px solid #E5E3E8;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
}
footer nav a {
  color: #fff;
  opacity: 0.80;
  font-size: 0.99rem;
  font-weight: 400;
  transition: opacity 0.12s, color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  opacity: 1;
  color: #B5987B;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.93rem;
  opacity: 0.92;
}
.footer-contact img {
  height: 15px;
  width: 15px;
  margin-right: 8px;
  vertical-align: middle;
}
footer .container > a img {
  height: 35px;
}

@media (max-width:900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  footer nav {
    gap: 16px;
    margin-bottom: 7px;
  }
}

/* === BUTTONS & LINKS === */
.btn-primary, .cookie-btn, .cookie-modal-btn {
  cursor: pointer;
  background: #232B2B;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 12px 26px;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin: 5px 8px 0 0;
  box-shadow: 0 2px 6px rgba(35,43,43,.04);
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus, .cookie-btn:hover, .cookie-btn:focus {
  background: #B5987B;
  color: #fff;
  box-shadow: 0 4px 20px rgba(181,152,123,0.13);
}

/* Cookie consent reject - accent color for visibility */
.cookie-btn.reject {
  background: #fff;
  color: #232B2B;
  border: 1.6px solid #B5987B;
  font-weight: 400;
  transition: background 0.17s, color 0.17s;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #B5987B;
  color: #fff;
}

.cookie-btn.settings {
  background: #B5987B;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #232B2B;
  color: #fff;
}

/* === COOKIE CONSENT BANNER & MODAL === */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  box-shadow: 0 -4px 30px rgba(35,43,43,0.19);
  border-top: 1.5px solid #E5E3E8;
  z-index: 350;
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 38px 22px 22px;
  gap: 20px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s, transform 0.4s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-consent-banner .cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #232B2B;
  font-size: 1.05rem;
  font-weight: 400;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    padding: 18px 7px;
    gap: 10px;
    align-items: stretch;
  }
  .cookie-consent-banner .cookie-buttons {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
}

.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(35,43,43,0.34);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 48px rgba(35,43,43,0.23);
  padding: 32px 32px 24px 32px;
  max-width: 410px;
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: popin .36s cubic-bezier(.29,1.09,.76,1.15);
}
.cookie-modal h3 {
  font-size: 1.3rem;
  color: #232B2B;
  margin-bottom: 7px;
}
.cookie-modal .cookie-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cookie-modal .cookie-ctg {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-modal .cookie-toggle {
  margin-left: auto;
  appearance: none;
  width: 36px;
  height: 18px;
  background: #E5E3E8;
  border-radius: 9px;
  position: relative;
  transition: background 0.15s;
  cursor: pointer;
}
.cookie-modal .cookie-toggle:checked {
  background: #B5987B;
}
.cookie-modal .cookie-toggle::before {
  content: "";
  position: absolute;
  left: 2.5px; top: 2.5px;
  width: 13px; height: 13px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(35,43,43,0.07);
  transition: left 0.19s, background 0.18s;
}
.cookie-modal .cookie-toggle:checked::before {
  left: 19px;
  background: #fff;
}
.cookie-modal .cookie-ctg.essential label {
  opacity: 0.67;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 12px;
  font-size: 1.5rem;
  color: #232B2B;
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-modal-btn {
  margin: 0 8px 0 0;
  background: #B5987B;
  color: #fff;
  padding: 9px 26px;
  font-size: 1.05rem;
  transition: background 0.15s;
  border-radius: 22px;
}
.cookie-modal-btn:hover, .cookie-modal-btn:focus {
  background: #232B2B;
}

@keyframes popin {
  from {transform: scale(0.85); opacity:0;}
  to {transform: scale(1); opacity:1;}
}

/* === ICONS IN TEXT === */
.text-section img, .footer-contact img, .notice img {
  vertical-align: middle;
  margin-right: 5px;
  height: 18px;
  width: 18px;
}

/* === SCROLLBAR MINI (optional, minimalist) === */
body::-webkit-scrollbar { width: 8px; background: #fff; }
body::-webkit-scrollbar-thumb { background: #E5E3E8; border-radius: 6px; }

/* === MISCELLANEOUS === */
::-moz-selection { background: #B5987B; color: #fff; }
::selection { background: #B5987B; color: #fff; }

hr {
  border: none;
  border-bottom: 1px solid #E5E3E8;
  margin: 30px 0;
}

/* === RESPONSIVE TYPOGRAPHY === */
@media (max-width: 768px) {
  h1, .h1 { font-size: 2.05rem; }
  h2, .h2 { font-size: 1.5rem; }
  h3, .h3 { font-size: 1.1rem; }
  .subheadline { font-size: 1rem; margin-bottom: 16px; }
}
@media (max-width:420px) {
  html { font-size: 15px; }
  h1, .h1 { font-size: 1.45rem; }
  h2, .h2 { font-size: 1.2rem; }
}

/* === SMOOTH ANIMATIONS === */
a, button, .btn-primary, .service-item, .card, .testimonial-card, .blog-post {
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, border-color 0.16s;
}

/* === CLEAN MICRO-INTERACTIONS === */
.service-item:hover .service-price,
.feature-grid > div:hover h3,
.blog-post:hover h3,
.category-list li:hover,
.text-section li:hover {
  color: #B5987B;
}

/* === FORMS/BASIC (if needed in contact forms) === */
input[type="text"], input[type="email"], textarea {
  background: #fff;
  border: 1px solid #E5E3E8;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 16px;
  transition: border 0.15s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border: 1.5px solid #B5987B;
}

label {
  color: #232B2B;
  font-size: 1rem;
  margin-bottom: 7px;
  display: block;
}

/* === PRINT STYLES === */
@media print {
  header, footer, .cookie-consent-banner, .mobile-menu { display: none !important; }
  section, .container, .content-wrapper { box-shadow: none !important; background: #fff !important; }
}

/* === END: Flesh Assets Minimalist Modern CSS === */
