/* CH2 — Lavender & Grey Premium Theme */

:root {
  --lav-50: #f7f5fa;
  --lav-100: #ede8f3;
  --lav-200: #dcd3e8;
  --lav-300: #c4b5d9;
  --lav-400: #a894c4;
  --lav-500: #8b75ad;
  --lav-600: #6f5a8e;
  --lav-700: #574770;
  --grey-50: #f9f9fa;
  --grey-100: #f0eff2;
  --grey-200: #e2e0e5;
  --grey-300: #c8c5cc;
  --grey-400: #9a959f;
  --grey-500: #6e6874;
  --grey-600: #524d57;
  --grey-700: #3a3640;
  --grey-800: #2a2630;
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --wrap: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 8px 32px rgba(87, 71, 112, 0.08);
  --shadow-lg: 0 20px 60px rgba(87, 71, 112, 0.12);
  --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey-600);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--lav-600); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--lav-700); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--grey-800);
  line-height: 1.15;
  margin: 0 0 1rem;
  font-weight: 600;
}
h1 { font-size: clamp(2.5rem, 5.5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1rem; }

.c2-wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.c2-skip { position: absolute; top: -100px; left: 1rem; background: var(--lav-600); color: var(--white); padding: 0.6rem 1rem; border-radius: 8px; z-index: 9999; }
.c2-skip:focus { top: 1rem; }
.c2-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lav-500); margin-bottom: 0.75rem; }
.c2-lead { font-size: 1.15rem; color: var(--grey-500); max-width: 640px; line-height: 1.65; }
.c2-link { font-weight: 600; color: var(--lav-600); }
.c2-link:hover { color: var(--lav-700); }
.c2-center { text-align: center; }

/* Header */
.c2-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--lav-100);
  transition: box-shadow var(--ease);
}
.c2-header.is-scrolled { box-shadow: var(--shadow); }
.c2-header__inner { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 0; gap: 2rem; }
.c2-logo img { height: 44px; width: auto; }
.c2-nav { display: flex; align-items: center; gap: 1.5rem; }
.c2-nav__list { display: flex; gap: 0.15rem; list-style: none; margin: 0; padding: 0; }
.c2-nav__list a, .c2-nav__link {
  padding: 0.45rem 0.9rem; font-weight: 500; font-size: 0.92rem;
  color: var(--grey-600); border-radius: 8px; transition: all var(--ease);
}
.c2-nav__list a:hover, .c2-nav__link:hover, .c2-nav__list a.is-active, .c2-nav__link.is-active {
  color: var(--lav-600); background: var(--lav-50);
}
.c2-menu-btn {
  display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.c2-menu-btn span { display: block; width: 22px; height: 2px; background: var(--grey-700); transition: var(--ease); }

/* Buttons */
.c2-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.8rem 1.6rem; font-family: var(--font-body); font-size: 0.92rem; font-weight: 600;
  border-radius: 50px; border: 2px solid transparent; cursor: pointer; transition: all var(--ease); text-decoration: none;
}
.c2-btn--lav {
  background: linear-gradient(135deg, var(--lav-500), var(--lav-600));
  color: var(--white); box-shadow: 0 4px 20px rgba(111, 90, 142, 0.3);
}
.c2-btn--lav:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(111, 90, 142, 0.4); color: var(--white); }
.c2-btn--ghost { background: transparent; border-color: var(--lav-200); color: var(--lav-600); }
.c2-btn--ghost:hover { background: var(--lav-50); }
.c2-btn--white { background: var(--white); color: var(--lav-700); }
.c2-btn--white:hover { background: var(--lav-50); color: var(--lav-700); }
.c2-btn--outline-w { background: transparent; border-color: rgba(255,255,255,0.5); color: var(--white); }
.c2-btn--outline-w:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.c2-btn--sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; }

/* Hero */
.c2-hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; }
.c2-hero__media { position: absolute; inset: 0; }
.c2-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.c2-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(247,245,250,0.97) 0%, rgba(247,245,250,0.88) 45%, rgba(237,232,243,0.75) 100%);
}
.c2-hero__content { position: relative; z-index: 1; padding: 5rem 0; max-width: 680px; }
.c2-hero__btns { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2rem 0 1.5rem; }
.c2-hero__meta { font-size: 0.9rem; color: var(--grey-500); }
.c2-hero__meta a { font-weight: 500; }

/* Pillars */
.c2-pillars { background: var(--grey-800); color: var(--lav-100); padding: 0; }
.c2-pillars__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.c2-pillar { padding: 2rem 1.5rem; border-right: 1px solid rgba(255,255,255,0.06); }
.c2-pillar:last-child { border-right: none; }
.c2-pillar span { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; color: var(--lav-400); }
.c2-pillar h3 { color: var(--white); font-size: 1.1rem; margin: 0.5rem 0; font-family: var(--font-body); font-weight: 600; }
.c2-pillar p { font-size: 0.85rem; color: var(--grey-300); margin: 0; line-height: 1.5; }

/* Sections */
.c2-section { padding: 5.5rem 0; }
.c2-section--mist { background: var(--lav-50); }
.c2-section-head { max-width: 700px; margin-bottom: 3rem; }
.c2-section-head--center { text-align: center; margin-inline: auto; }
.c2-section-head p:last-child { color: var(--grey-500); font-size: 1.05rem; }

.c2-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.c2-split--rev .c2-split__img { order: -1; }
.c2-split__img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* Products */
.c2-products { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 2rem; }
.c2-products--page { grid-template-columns: 1fr; gap: 2.5rem; }
.c2-product {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--lav-100); transition: transform var(--ease), box-shadow var(--ease);
}
.c2-product:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.c2-product--wide { display: grid; grid-template-columns: 340px 1fr; }
.c2-product__img { position: relative; display: block; aspect-ratio: 1; background: var(--lav-50); overflow: hidden; }
.c2-product--wide .c2-product__img { aspect-ratio: auto; min-height: 280px; }
.c2-product__img img { width: 100%; height: 100%; object-fit: contain; padding: 1.5rem; transition: transform 0.5s; }
.c2-product:hover .c2-product__img img { transform: scale(1.04); }
.c2-product__tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--lav-500); color: var(--white);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.35rem 0.8rem; border-radius: 50px;
}
.c2-product__tag--hero { position: static; display: inline-block; margin-top: 1rem; }
.c2-product__body { padding: 1.75rem; }
.c2-product__mat { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--lav-500); }
.c2-product__body h2, .c2-product__body h3 { font-size: 1.3rem; margin: 0.4rem 0 0.6rem; }
.c2-product__body h2 a, .c2-product__body h3 a { color: var(--grey-800); }
.c2-product__body p { font-size: 0.92rem; color: var(--grey-500); }
.c2-product__sizes { font-size: 0.85rem; color: var(--grey-500); }

/* Industries */
.c2-industries { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.c2-industry {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--lav-100); background: var(--white);
  transition: box-shadow var(--ease);
}
.c2-industry:hover { box-shadow: var(--shadow); }
.c2-industry img { width: 100%; height: 200px; object-fit: cover; }
.c2-industry div { padding: 1.5rem; }
.c2-industry h3 { font-size: 1.15rem; }
.c2-industry p { font-size: 0.9rem; color: var(--grey-500); margin: 0; }

/* Blog */
.c2-blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.c2-blog-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--lav-100); padding: 1.75rem;
  transition: box-shadow var(--ease), border-color var(--ease);
}
.c2-blog-card:hover { box-shadow: var(--shadow); border-color: var(--lav-200); }
.c2-blog-card time { font-size: 0.78rem; color: var(--grey-400); }
.c2-blog-card h3 { font-size: 1.15rem; margin: 0.4rem 0; }
.c2-blog-card h3 a { color: var(--grey-800); }

/* CTA */
.c2-cta {
  background: linear-gradient(135deg, var(--lav-600) 0%, var(--grey-700) 100%);
  padding: 4.5rem 0; color: var(--white);
}
.c2-cta h2 { color: var(--white); }
.c2-cta p { opacity: 0.9; margin: 0; }
.c2-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.c2-cta__btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Page hero */
.c2-page-hero {
  background: linear-gradient(160deg, var(--lav-50) 0%, var(--grey-100) 100%);
  padding: 3.5rem 0 4rem;
  border-bottom: 1px solid var(--lav-100);
}

/* Breadcrumbs */
.c2-breadcrumbs { margin-bottom: 1.25rem; font-size: 0.82rem; }
.c2-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0.4rem; list-style: none; margin: 0; padding: 0; }
.c2-breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: 0.4rem; color: var(--grey-300); }
.c2-breadcrumbs a { color: var(--grey-400); }
.c2-breadcrumbs span { color: var(--grey-700); font-weight: 500; }

/* About */
.c2-values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.c2-value {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; border: 1px solid var(--lav-100);
}
.c2-value h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; }
.c2-value p { font-size: 0.92rem; color: var(--grey-500); margin: 0; }

.c2-checklist { list-style: none; padding: 0; margin: 0 0 2rem; }
.c2-checklist li {
  padding: 0.65rem 0 0.65rem 1.75rem; position: relative;
  border-bottom: 1px solid var(--lav-100); font-size: 0.95rem;
}
.c2-checklist li::before {
  content: ''; position: absolute; left: 0; top: 0.95rem;
  width: 8px; height: 8px; border-radius: 50%; background: var(--lav-400);
}

.c2-stats-band { background: var(--lav-100); padding: 3rem 0; }
.c2-stats-band__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.c2-stats-band strong { display: block; font-family: var(--font-display); font-size: 2.5rem; color: var(--lav-600); }
.c2-stats-band span { font-size: 0.85rem; color: var(--grey-500); font-weight: 500; }

/* Offer row */
.c2-offer-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.c2-offer {
  background: var(--white); border-radius: var(--radius); padding: 1.5rem;
  border-top: 3px solid var(--lav-400);
}
.c2-offer h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; }
.c2-offer p { font-size: 0.85rem; color: var(--grey-500); margin: 0; }

/* Contact */
.c2-contact { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.c2-contact__info { display: grid; gap: 1rem; }
.c2-info-card { background: var(--lav-50); border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--lav-100); }
.c2-info-card h3 { font-family: var(--font-body); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--lav-500); margin-bottom: 0.4rem; font-weight: 600; }
.c2-info-card a { font-weight: 600; font-size: 1.05rem; }
.c2-info-card address { font-style: normal; line-height: 1.6; }
.c2-contact__form { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; border: 1px solid var(--lav-100); box-shadow: var(--shadow); }
.c2-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.c2-field { margin-bottom: 1.1rem; }
.c2-field label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 0.35rem; color: var(--grey-700); }
.c2-field input, .c2-field textarea {
  width: 100%; padding: 0.85rem 1rem; border: 1.5px solid var(--lav-200);
  border-radius: 10px; font-family: var(--font-body); font-size: 0.95rem;
  background: var(--lav-50); transition: border-color var(--ease), box-shadow var(--ease);
}
.c2-field input:focus, .c2-field textarea:focus {
  outline: none; border-color: var(--lav-400);
  box-shadow: 0 0 0 3px rgba(139, 117, 173, 0.15); background: var(--white);
}
.c2-notice { padding: 1rem; border-radius: 10px; margin-bottom: 1.5rem; font-weight: 500; }
.c2-notice--ok { background: #f0faf4; color: #276749; border: 1px solid #c6f0d5; }

/* Product single */
.c2-product-hero {
  background: var(--lav-50) center/cover no-repeat;
  padding: 3rem 0 4rem;
  position: relative;
}
.c2-product-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(247,245,250,0.95), rgba(237,232,243,0.9));
}
.c2-product-hero .c2-wrap { position: relative; }
.c2-product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-bottom: 3rem; }
.c2-product-detail__img {
  background: var(--lav-50); border-radius: var(--radius-lg);
  padding: 2rem; border: 1px solid var(--lav-100);
}
.c2-product-detail__img img { margin: 0 auto; max-height: 360px; object-fit: contain; }
.c2-spec {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0; border-bottom: 1px solid var(--lav-100); font-size: 0.92rem;
}
.c2-spec span { color: var(--grey-400); }
.c2-spec strong { color: var(--grey-700); }
.c2-prose { max-width: 780px; font-size: 1.02rem; }
.c2-prose h2 { margin-top: 2rem; font-size: 1.5rem; }
.c2-prose ul { padding-left: 1.25rem; }
.c2-prose li { margin-bottom: 0.4rem; }

/* Article */
.c2-article__head { background: var(--lav-50); padding: 3rem 0; border-bottom: 1px solid var(--lav-100); }
.c2-article__head time { font-size: 0.82rem; color: var(--grey-400); }

/* Footer */
.c2-footer { background: var(--grey-800); color: var(--grey-300); padding: 4rem 0 2rem; }
.c2-footer h4 { color: var(--lav-200); font-family: var(--font-body); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1.25rem; font-weight: 600; }
.c2-footer a { color: var(--grey-300); }
.c2-footer a:hover { color: var(--lav-200); }
.c2-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 3rem; }
.c2-footer__brand p { font-size: 0.88rem; line-height: 1.7; margin-top: 1rem; }
.c2-footer ul { list-style: none; padding: 0; margin: 0; }
.c2-footer ul li { margin-bottom: 0.55rem; font-size: 0.88rem; }
.c2-footer__bar {
  display: flex; justify-content: space-between; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.82rem; flex-wrap: wrap; gap: 0.5rem;
}

/* Pagination */
.navigation.pagination { margin: 2.5rem 0; text-align: center; }
.nav-links { display: flex; justify-content: center; gap: 0.4rem; flex-wrap: wrap; }
.page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 0.6rem; border-radius: 8px;
  background: var(--lav-50); color: var(--grey-700); font-weight: 500; font-size: 0.9rem;
}
.page-numbers.current { background: var(--lav-500); color: var(--white); }

/* Responsive */
@media (max-width: 1100px) {
  .c2-pillars__grid, .c2-industries, .c2-offer-row, .c2-stats-band__grid { grid-template-columns: repeat(2, 1fr); }
  .c2-product--wide { grid-template-columns: 1fr; }
  .c2-footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .c2-menu-btn { display: flex; }
  .c2-nav {
    position: fixed; top: 0; right: -100%; width: min(300px, 85vw); height: 100vh;
    background: var(--white); flex-direction: column; align-items: stretch;
    padding: 5rem 1.5rem 2rem; box-shadow: var(--shadow-lg); transition: right var(--ease); z-index: 999;
  }
  .c2-nav.is-open { right: 0; }
  .c2-nav__list { flex-direction: column; }
  .c2-hero { min-height: auto; }
  .c2-hero__content { padding: 3.5rem 0; }
  .c2-split, .c2-contact, .c2-product-detail, .c2-values { grid-template-columns: 1fr; }
  .c2-pillars__grid { grid-template-columns: 1fr; }
  .c2-pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .c2-industries, .c2-offer-row, .c2-stats-band__grid { grid-template-columns: 1fr; }
  .c2-section { padding: 3.5rem 0; }
  .c2-cta__inner { flex-direction: column; text-align: center; }
  .c2-form-row { grid-template-columns: 1fr; }
  .c2-footer__grid { grid-template-columns: 1fr; }
}