/* ================================================================== */
/*        FRESHNOR INTERIORS — MONOCHROME SOPHISTICATED CSS           */
/* ================================================================== */

/* ------------------- CSS RESET & NORMALIZE ---------------------- */
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, main, 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #F9F9F9;
  color: #1A2738;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul, ol {
  margin-left: 20px;
  padding-left: 0;
}
a {
  color: #1A2738;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #000;
  outline: none;
  text-decoration: underline;
}
strong {
  font-weight: 600;
}

hr {
  border: none;
  height: 1px;
  background: #D1D1D1;
  margin: 32px 0;
}

/* ------------------- BRAND COLORS AS CSS VARIABLES --------------- */
:root {
  --color-primary: #1A2738;
  --color-secondary: #A7A9AC;
  --color-accent: #F4ECE3;
  --color-white: #fff;
  --color-grey-100: #F9F9F9;
  --color-grey-200: #EBEBEB;
  --color-grey-300: #E2E3E5;
  --color-grey-400: #A7A9AC;
  --color-grey-500: #333841;
  --color-black: #151821;
}

/* ------------------- TYPOGRAPHY ------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1,h2,h3,h4 {
  color: var(--color-black);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.75rem; /* 44px */
  margin-bottom: 16px;
  line-height: 1.13;
}
h2 {
  font-size: 2rem;    /* 32px */
  margin-bottom: 18px;
  line-height: 1.1;
}
h3 {
  font-size: 1.5rem;  /* 24px */
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.16;
}
h4 {
  font-size: 1.125rem; /* 18px */
  margin-bottom: 10px;
  font-weight: 600;
}
p, li, span, a, ul, ol, label, blockquote {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem; /* 16px */
  color: var(--color-primary);
  line-height: 1.7;
}
p.subheadline {
  color: var(--color-secondary);
  font-size: 1.25rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 24px;
  line-height: 1.4;
}

/* Typography scale responsive adjustments */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.125rem; }
  p.subheadline { font-size: 1.05rem; }
}

/* ------------------- CONTAINERS & LAYOUT ------------------------ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.main-nav, .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
}

.content-wrapper {
  margin: 0 auto;
  max-width: 900px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 0 12px 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 4px 28px rgba(26,39,56,0.08);
  position: relative;
}
@media (max-width: 900px) {
  .section { padding: 28px 8px; }
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 230px;
  max-width: 350px;
  background: var(--color-grey-100);
  padding: 30px 20px 22px 20px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(26,39,56,0.06);
  transition: box-shadow 0.25s, transform 0.25s;
}
.feature-item img {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
}
.feature-item:hover {
  box-shadow: 0 6px 28px rgba(26,39,56,0.14);
  transform: translateY(-4px) scale(1.03);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(26,39,56,0.06);
  margin-bottom: 20px;
  padding: 30px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 260px;
  max-width: 390px;
  transition: box-shadow 0.24s, transform 0.24s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(26,39,56,0.13);
  transform: translateY(-6px) scale(1.04);
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card {
  background: var(--color-grey-100);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(26,39,56,0.05);
  padding: 26px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 240px;
  max-width: 390px;
  transition: box-shadow 0.23s, transform 0.19s;
}
.service-card:hover {
  box-shadow: 0 6px 22px rgba(26,39,56,0.12);
  transform: translateY(-4px) scale(1.02);
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  padding: 20px;
  background: var(--color-accent);
  border-radius: 13px;
  box-shadow: 0 3px 14px rgba(26,39,56,0.06);
  margin-bottom: 20px;
  max-width: 500px;
  color: var(--color-black);
  font-size: 1.055rem;
  transition: box-shadow 0.23s, transform 0.17s;
}
.testimonial-card p {
  color: var(--color-black);
  font-style: italic;
  margin-bottom: 4px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.testimonial-card span {
  color: var(--color-primary);
  font-size: 0.99rem;
  font-style: normal;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.testimonial-card:hover {
  box-shadow: 0 7px 22px rgba(26,39,56,0.18);
  transform: scale(1.025);
}

/* For multiple testimonial cards in a flex container */
@media (min-width: 769px) {
  .content-wrapper > .testimonial-card {
    min-width: 280px;
    max-width: 420px;
    margin-right: 24px;
  }
}

/* Footer Layout */
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-nav, .footer-legal, .footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  align-items: center;
}
.footer-contact {
  color: var(--color-grey-500);
  font-size: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin: 6px 0 3px 0;
}
.footer-social img {
  width: 26px;
  height: 26px;
  filter: grayscale(1) contrast(1.1);
  opacity: 0.9;
  transition: filter 0.18s, opacity 0.18s;
}
.footer-social a:hover img {
  filter: grayscale(0) brightness(0.6);
  opacity: 1;
}
.footer-legal {
  font-size: 0.98rem;
  color: var(--color-secondary);
  gap: 13px;
}
.footer-legal a { color: var(--color-grey-500); }
.footer-legal a:hover { color: var(--color-black); }

/* Lists and FAQs */
.benefits-list, .trade-services-list, .brand-values, .design-principles, .footer-contact ul, .faqs ul {
  padding: 0 0 0 20px;
  color: var(--color-black);
}
.benefits-list ul, .trade-services-list ul, .brand-values ul, .design-principles ul, .faqs ul {
  margin-bottom: 0;
  color: var(--color-primary);
}
.benefits-list li, .trade-services-list li, .brand-values li, .design-principles li, .faqs li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--color-black);
}

/* ------------------- BUTTONS & CTA ----------------------------- */
.cta-btn, button, input[type='submit'] {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 600;
  padding: 14px 38px;
  border: none;
  border-radius: 999px;
  box-shadow: 0 2px 14px rgba(26,39,56,0.10);
  cursor: pointer;
  letter-spacing: 0.8px;
  transition: background 0.19s, color 0.19s, box-shadow 0.18s, transform 0.19s;
  display: inline-block;
  margin-top: 6px;
  margin-bottom: 6px;
}
.cta-btn:hover, button:hover, input[type='submit']:hover,
.cta-btn:focus, button:focus {
  background: #101926;
  color: var(--color-accent);
  box-shadow: 0 6px 26px rgba(26,39,56,0.16);
  transform: translateY(-2px) scale(1.035);
  outline: none;
}

/* ------------------- HEADER & NAVIGATION ------------------------ */
header {
  width: 100%;
  background: var(--color-white);
  box-shadow: 0 2px 12px rgba(26,39,56,0.06);
  padding: 0;
  border-bottom: 1.1px solid var(--color-grey-200);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 80;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 72px;
}
header img {
  height: 46px;
  margin-right: 26px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  color: var(--color-primary);
  padding: 8px 4px;
  border-radius: 8px;
  transition: background 0.16s, color 0.19s;
  margin-right: 2px;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-grey-200);
  color: var(--color-black);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  z-index: 101;
  padding: 8px 14px;
  margin-left: 22px;
  border-radius: 8px;
  transition: background 0.17s;
}
.mobile-menu-toggle:hover {
  background: var(--color-grey-200);
}

/* ------------------- MOBILE NAV ------------------------------ */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(30,32,36,0.64);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.51,.34,.2,1.08);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--color-white);
  margin: 22px 30px 0 0;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.18s;
}
.mobile-menu-close:hover { color: var(--color-accent); }
.mobile-nav {
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  padding: 44px 36px 36px 38px;
  min-width: 77vw;
  min-height: 100vh;
  box-shadow: -8px 0 24px 0 rgba(26,39,56,0.14);
}
.mobile-nav a {
  color: var(--color-black);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.37rem;
  padding: 15px 0 13px 0;
  border-bottom: 1.2px solid var(--color-grey-200);
  margin-bottom: 4px;
  transition: color 0.16s, background 0.14s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}

@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: inline-block; }
}
@media (max-width: 768px) {
  header .container { min-height: 62px; }
  header img { height: 36px; }
  .mobile-nav { min-width: 91vw; padding: 36px 18px 22px 18px; }
}

/* Hide mobile menu on desktop */
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}


/* ------------------- RESPONSIVE FLEX ADJUSTMENTS ----------------*/
@media (max-width: 900px) {
  .feature-grid, .services-list, .card-container, .content-grid, .footer-nav, .footer-legal, .footer-social, .footer-contact {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 18px;
  }
  .feature-item, .service-card, .card {
    min-width: 0;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
  }
  .section {
    margin-bottom: 33px;
    padding: 18px 2px;
    border-radius: 10px;
  }
  .content-wrapper {
    gap: 10px;
    padding: 0;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
    padding: 14px 10px;
    font-size: 0.99rem;
  }
}

/* ------------------- ANIMATIONS & MICRO-INTERACTIONS ------------ */
html {
  scroll-behavior: smooth;
}
.section, .card, .feature-item, .service-card, .testimonial-card {
  transition: box-shadow 0.23s, transform 0.19s, background 0.19s, border 0.16s;
}
.cta-btn, button, input[type='submit'] {
  transition: background 0.16s, color 0.19s, box-shadow 0.17s, transform 0.17s;
}

/* ------------------- FORMS (Contact, Cookie modal) --------------- */
input, textarea, select {
  appearance: none;
  background: var(--color-grey-100);
  border: 1.1px solid var(--color-grey-400);
  border-radius: 8px;
  padding: 12px 15px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 20px;
  outline: none;
  box-shadow: none;
  transition: border 0.19s, box-shadow 0.19s;
}
input:focus, textarea:focus, select:focus {
  border: 1.6px solid var(--color-primary);
  box-shadow: 0 0 5px 0 rgba(26,39,56,0.10);
}

label {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 9px;
  font-size: 1.06rem;
  display: block;
}

/* ------------------- COOKIE CONSENT BANNER & MODAL --------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--color-white);
  color: var(--color-black);
  padding: 22px 14px 22px 18px;
  box-shadow: 0 -1.5px 10px 2px rgba(26,39,56, 0.12);
  z-index: 10010;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-size: 1.08rem;
  animation: cookie-slide-in 0.5s cubic-bezier(.5,.95,.38,1.2) 1;
}
.cookie-banner.hide {
  display: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-size: 1rem;
  padding: 11px 22px;
}
.cookie-settings-btn {
  background: var(--color-grey-100);
  color: var(--color-primary);
  border: 1.1px solid var(--color-primary);
  font-weight: 500;
  transition: background 0.16s, color 0.17s, border 0.13s;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus { background: var(--color-green-200); color: var(--color-black); }
.accept-cookies-btn {
  background: var(--color-primary);
  color: var(--color-white);
}
.reject-cookies-btn {
  background: var(--color-grey-400);
  color: var(--color-white);
}
.accept-cookies-btn:hover, .reject-cookies-btn:hover {
  background: var(--color-black);
  color: var(--color-accent);
}

@keyframes cookie-slide-in {
  0% { transform: translateY(100%); opacity: 0; }
  70% { transform: translateY(-12px); opacity: 1; }
  100% { transform: translateY(0); }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,39,56, 0.41);
  z-index: 10100;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s;
}
.cookie-modal-overlay.hide { opacity: 0; pointer-events: none; }
.cookie-modal {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 7px 44px rgba(26,39,56,0.18);
  max-width: 410px;
  width: 90vw;
  padding: 36px 22px 30px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 10110;
  animation: modal-fade-in 0.26s ease;
}
@keyframes modal-fade-in {
  0% { transform: scale(0.93) translateY(40px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 11px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}
.cookie-modal .cookie-category:last-of-type { margin-bottom: 0; }
.cookie-modal label {
  font-size: 1rem;
  margin: 0;
}
.cookie-modal input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-primary);
  border-radius: 5px;
  margin: 0 7px 0 0;
}
.cookie-modal .essential { color: var(--color-secondary); font-style: italic; font-size: 0.97rem; }
.cookie-modal .cookie-modal-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.45rem;
  color: var(--color-grey-400);
  cursor: pointer;
  z-index: 10;
  transition: color 0.16s;
}
.cookie-modal .cookie-close:hover {
  color: var(--color-primary);
}

@media (max-width: 520px) {
  .cookie-modal { max-width: 99vw; padding: 14px 7px 18px 7px; }
}

/* ====================== SECTIONS & PAGE PARTS ===================== */
.brand-overview, .founder-story, .mission-vision, .design-principles, .sustainability-focus, .client-approach, .studio-description, .before-after, .faqs, .collection-highlights, .industry-sectors, .feature-icons {
  margin-bottom: 16px;
}
.feature-icons ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.feature-icons li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
}
.feature-icons img {
  width: 34px;
  height: 34px;
}
.colaboration-steps ol,
.collaboration-steps ul {
  padding-left: 16px;
  margin-bottom: 0;
}

/* ===================== Card Highlights, List Alignment ============ */
.collection-highlights ul, .faqs ul, .before-after ul, .industry-sectors ul, .brand-values ul, .design-principles ul {
  list-style: disc inside;
  margin-top: 7px;
}
.collection-highlights h3,
.benefits-list h3,
.faqs h3,
.before-after h3,
.design-principles h3,
.sustainability-focus h3,
.client-approach h3,
.industry-sectors h3
 { margin-bottom: 0.25em; font-size: 1.18rem; color: var(--color-secondary); font-weight: 600; }

/* ======================= Misc Spacing and Alignment =============== */
section ul li { margin-bottom: 7px; }
section ol li { margin-bottom: 9px; }

/* Remove bottom margin on last elements in flex containers */
.card-container > *:last-child,
.content-wrapper > *:last-child,
.section > *:last-child {
  margin-bottom: 0 !important;
}

/* =================== Accessibility & Utility Classes ============== */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.visible-focus:focus {
  outline: 3px dashed var(--color-secondary);
  outline-offset: 2px;
}

/* For whitespace balance */
.mt-16 { margin-top: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }
.pb-16 { padding-bottom: 16px !important; }


/* ================================================================== */
/*        END FRESHNOR MONOCHROME SOPHISTICATED CSS                   */
/* ================================================================== */