:root {
  --ink: #202534;
  --navy: #344052;
  --blue: #64799e;
  --red: #b86a63;
  --paper: #f7f6f2;
  --white: #ffffff;
  --soft-blue: #e7ebf0;
  --line: rgba(32, 37, 52, 0.13);
  --muted: #666d79;
  --max: 1240px;
  --radius: 18px;
  --headline-size: clamp(2.8rem, 4.7vw, 4.6rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.shell { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(246, 244, 239, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 13px; font-weight: 760; letter-spacing: -0.02em; }
.brand img { width: 88px; height: 58px; object-fit: contain; }
.brand span { display: none; }
.nav-links { display: flex; align-items: center; gap: 27px; font-size: 0.9rem; font-weight: 650; }
.nav-links a:not(.button) { position: relative; }
.nav-links a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--blue); transition: right .2s ease; }
.nav-links a:not(.button):hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav-tools { display: flex; align-items: center; gap: 10px; }
.lang-switch { display: flex; padding: 3px; border: 1px solid var(--line); border-radius: 999px; }
.lang-switch button { border: 0; background: transparent; color: var(--muted); border-radius: 999px; padding: 5px 9px; cursor: pointer; font-size: .78rem; font-weight: 750; }
.lang-switch button.active { color: var(--white); background: var(--navy); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 21px; border: 1px solid var(--ink); border-radius: 999px; background: var(--ink); color: var(--white); font-size: .9rem; font-weight: 720; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); background: var(--blue); border-color: var(--blue); }
.button.light { background: var(--white); color: var(--ink); border-color: var(--white); }
.button.ghost { background: transparent; color: var(--ink); }
.eyebrow { margin: 0 0 18px; color: var(--blue); font-size: .75rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.display { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.045em; line-height: .98; }
.section-title { max-width: 760px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: var(--headline-size); font-weight: 400; letter-spacing: -.035em; line-height: 1.08; }
.lead { max-width: 650px; margin: 24px 0 0; color: var(--muted); font-size: clamp(1.05rem, 1.7vw, 1.25rem); line-height: 1.55; }
.section { padding: 116px 0; }

.hero { padding: 42px 0 78px; }
.hero-grid { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero-copy { display: grid; gap: 54px; padding: clamp(48px, 6vw, 76px) 0; color: var(--ink); }
.hero-copy > div { max-width: none; }
.hero h1 { max-width: none; font-size: var(--headline-size); white-space: nowrap; }
.hero-copy .eyebrow { color: var(--blue); }
.hero-copy p { max-width: 600px; margin: 24px 0 32px; color: var(--muted); font-size: 1.12rem; }
.hero-intro { max-width: 820px !important; }
.hero-intro p { max-width: 820px; margin: 0 0 16px; }
.hero-intro p:last-of-type { margin-bottom: 30px; }

.trust-row { display: grid; grid-template-columns: 1.1fr repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-row > div { padding: 28px; border-left: 1px solid var(--line); }
.trust-row > div:first-child { border-left: 0; padding-left: 0; }
.trust-row strong { display: block; font-family: Georgia, serif; font-size: 1.5rem; font-weight: 400; }
.trust-row span { color: var(--muted); font-size: .82rem; }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 56px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); }
.service { min-height: 320px; padding: 34px; background: var(--white); }
.service-num { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; color: var(--blue); border: 1px solid rgba(49,87,213,.35); border-radius: 50%; font-size: .75rem; font-weight: 800; }
.service h3 { margin: 70px 0 14px; font-family: Georgia, serif; font-size: 2rem; font-weight: 400; letter-spacing: -.03em; }
.service p { margin: 0; color: var(--muted); }

.categories { color: var(--ink); background: var(--soft-blue); }
.categories .eyebrow { color: var(--blue); }
.category-list { margin-top: 48px; border-top: 1px solid var(--line); }
.category { display: grid; grid-template-columns: 60px 1fr; align-items: center; gap: 22px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.category span:first-child { color: var(--blue); font-size: .78rem; }
.category h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(1.65rem, 3vw, 2.65rem); font-weight: 400; }

.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.story-images { position: relative; min-height: 610px; }
.story-images img:first-child { width: 77%; height: 520px; object-fit: cover; border-radius: 22px; }
.story-images img:last-child { position: absolute; right: 0; bottom: 0; width: 51%; height: 300px; object-fit: cover; border: 10px solid var(--paper); border-radius: 22px; }
.story-copy p { color: var(--muted); }
.story-points { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 36px; }
.story-point { padding-top: 17px; border-top: 1px solid var(--line); }
.story-point strong { display: block; margin-bottom: 5px; }

.sustainability-banner { display: grid; grid-template-columns: 1.05fr .95fr; overflow: hidden; background: #dce5d8; border-radius: 26px; }
.sustainability-banner > div { padding: clamp(38px, 6vw, 80px); }
.sustainability-banner img { height: 100%; min-height: 520px; object-fit: cover; }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 25px; color: var(--blue); font-weight: 750; }

.contact { padding: 90px 0; color: var(--ink); background: #dfe6ee; }
.contact-grid { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 50px; }
.contact h1, .contact h2 { max-width: 830px; font-size: var(--headline-size); }
.contact p { max-width: 650px; color: var(--muted); }
.email-link { display: inline-block; margin-top: 18px; font-size: clamp(1.15rem, 2vw, 1.55rem); font-weight: 700; border-bottom: 1px solid rgba(32,37,52,.4); }
.contact-page { display: grid; min-height: calc(100vh - 78px); align-items: center; padding: clamp(100px, 14vw, 180px) 0; }

.site-footer { padding: 54px 0 28px; color: #d5dae2; background: var(--navy); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; }
.footer-brand {
  width: min(100%, 240px);
  aspect-ratio: 2278 / 1411;
  margin-bottom: 18px;
  overflow: hidden;
  background: url("/assets/clp-logo.png") left center / contain no-repeat;
  filter: invert(1) grayscale(1) brightness(1.6);
  color: transparent;
  font-size: 0;
}
.footer-links { display: grid; gap: 8px; font-size: .9rem; }
.footer-label { color: #7f8799; font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); font-size: .78rem; color: #8990a0; }

.page-hero { padding: 84px 0 70px; }
.page-hero-grid { display: grid; grid-template-columns: 1fr .72fr; gap: 80px; align-items: end; }
.page-hero h1 { font-size: var(--headline-size); }
.page-hero .lead { margin-bottom: 12px; }
.feature-image { height: min(70vh, 720px); min-height: 480px; object-fit: cover; border-radius: 26px; }
.commitment-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 9vw, 140px); }
.big-copy { margin: 0; font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 4.2rem); line-height: 1.15; letter-spacing: -.035em; }
.detail-stack { border-top: 1px solid var(--line); }
.detail { padding: 29px 0; border-bottom: 1px solid var(--line); }
.detail h3 { margin: 0 0 10px; font-size: 1.15rem; }
.detail p { margin: 0; color: var(--muted); }
.memberships { background: var(--white); }
.membership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.membership { display: flex; min-height: 330px; flex-direction: column; justify-content: space-between; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); }
.membership img { width: 150px; height: 90px; object-fit: contain; object-position: left center; filter: grayscale(1); }
.membership h3 { margin: 0 0 8px; font-family: Georgia, serif; font-size: 1.8rem; font-weight: 400; }
.membership p { margin: 0; color: var(--muted); font-size: .92rem; }
.production-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.production-grid img { border: 1px solid var(--line); border-radius: 24px; }

.certificates-intro { padding-bottom: 48px; }
.certificates-intro .display { max-width: 13ch; font-size: var(--headline-size); letter-spacing: -.03em; line-height: 1.06; }
.certificate-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.certificate-card { display: grid; grid-template-rows: 150px auto; min-height: 430px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.certificate-card:last-child { grid-column: 1 / -1; }
.certificate-logo { display: flex; align-items: center; justify-content: center; margin: 20px; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.certificate-logo img { width: auto; max-width: 82%; height: 88px; object-fit: contain; filter: none; }
.certificate-logo .wide-logo { width: 100%; max-width: 100%; }
.certificate-nameplate { color: var(--navy); font-size: clamp(1.35rem, 2.4vw, 2rem); font-weight: 800; letter-spacing: -.035em; line-height: 1.05; text-align: center; }
.certificate-nameplate small { display: block; margin-top: 7px; font-size: .72rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.certificate-card-copy { display: flex; flex-direction: column; align-items: flex-start; padding: 30px; border-top: 1px solid var(--line); }
.certificate-type { margin: 0 0 15px; color: var(--blue); font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.certificate-card h2 { margin: 0 0 13px; font-family: Georgia, serif; font-size: 2rem; font-weight: 400; line-height: 1.1; }
.certificate-card-copy > p:not(.certificate-type) { margin: 0; color: var(--muted); }
.certificate-card .text-link { margin-top: auto; padding-top: 24px; }
.certificate-note { max-width: 850px; margin: 30px 0 0; color: var(--muted); font-size: .9rem; }

@media (max-width: 980px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .nav-links { display: none; position: absolute; top: 78px; right: 14px; left: 14px; align-items: stretch; flex-direction: column; gap: 0; padding: 16px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 20px 50px rgba(17,21,34,.12); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px; }
  .menu-toggle { display: block; }
  .nav .button { display: none; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .hero-copy { min-height: 0; }
  .hero h1 { white-space: normal; }
  .trust-row { grid-template-columns: repeat(2,1fr); }
  .trust-row > div { border-bottom: 1px solid var(--line); }
  .services-grid { grid-template-columns: 1fr; }
  .service { min-height: 260px; }
  .service h3 { margin-top: 45px; }
  .story-grid, .commitment-grid, .production-grid { grid-template-columns: 1fr; }
  .sustainability-banner { grid-template-columns: 1fr; }
  .membership-grid, .certificate-grid { grid-template-columns: 1fr; }
  .certificate-card:last-child { grid-column: auto; }
}

@media (max-width: 700px) {
  .section { padding: 82px 0; }
  .brand span { display: none; }
  .hero { padding-top: 18px; }
  .hero-grid { min-height: 0; }
  .hero-copy { min-height: 0; gap: 38px; padding: 44px 0; }
  .hero h1 { font-size: var(--headline-size); }
  .trust-row { grid-template-columns: 1fr; }
  .trust-row > div { padding-left: 0; border-left: 0; }
  .section-head { align-items: start; flex-direction: column; }
  .category { grid-template-columns: 38px 1fr; }
  .story-images { min-height: 480px; }
  .story-images img:first-child { height: 410px; }
  .story-images img:last-child { height: 220px; }
  .story-points { grid-template-columns: 1fr; }
  .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 35px; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding-top: 54px; }
  .page-hero h1 { font-size: var(--headline-size); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
