@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,wght@0,400;0,500;0,600;0,700;1,400&family=IBM+Plex+Sans:wght@300;400;500;600&display=swap');

:root {
  --ch-primary: #2d1b2e;
  --ch-accent: #b8860b;
  --ch-accent2: #d4a94f;
  --ch-bg: #fffef9;
  --ch-bg-alt: #f7f1e6;
  --ch-text: #2d241d;
  --ch-text-light: #7a6f63;
  --ch-border: #e8dfd3;
  --ch-border-light: #f0e9de;
  --ch-white: #ffffff;
  --ch-shadow-sm: 0 1px 3px rgba(45,27,46,.06);
  --ch-shadow: 0 2px 10px rgba(45,27,46,.08);
  --ch-shadow-md: 0 4px 20px rgba(45,27,46,.10);
  --ch-shadow-lg: 0 8px 32px rgba(45,27,46,.14);
  --ch-radius: 8px;
  --ch-radius-sm: 4px;
  --ch-font-heading: 'Newsreader', Georgia, 'Times New Roman', serif;
  --ch-font-body: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ch-max-w: 1200px;
  --ch-header-h: 72px;
}

*, ::before, ::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ch-font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ch-text);
  background: var(--ch-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ch-accent); text-decoration: none; transition: color .25s; }
a:hover { color: var(--ch-primary); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ch-font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ch-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.15rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
p + p { margin-top: 1rem; }

.ch-container {
  width: 100%;
  max-width: var(--ch-max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── HEADER ── */
.ch-header {
  background: var(--ch-bg);
  height: var(--ch-header-h);
  border-bottom: 1px solid var(--ch-border);
  position: sticky;
  top: 0;
  z-index: 900;
  transition: box-shadow .3s;
}

.ch-header.is-fixed { box-shadow: var(--ch-shadow-md); }

.ch-header__inner {
  max-width: var(--ch-max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ch-header__brand {
  font-family: var(--ch-font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ch-primary);
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ch-header__brand:hover { color: var(--ch-accent); }

.ch-header__brand svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* ── NAV ── */
.ch-nav { display: none; }

.ch-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

.ch-nav__item > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--ch-text);
  border-radius: var(--ch-radius-sm);
  transition: background .2s, color .2s;
}

.ch-nav__item > a:hover,
.ch-nav__item > a.is-active {
  background: var(--ch-bg-alt);
  color: var(--ch-accent);
}

.ch-nav__item > a svg {
  width: 12px;
  height: 12px;
  transition: transform .2s;
}

.ch-nav__item--dropdown { position: relative; }

.ch-nav__dropdown {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--ch-bg);
  border: 1px solid var(--ch-border);
  border-radius: var(--ch-radius);
  box-shadow: var(--ch-shadow-md);
  min-width: 210px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s, transform .2s, visibility .2s;
}

.ch-nav__item--dropdown:hover .ch-nav__dropdown,
.ch-nav__item--dropdown:focus-within .ch-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ch-nav__item--dropdown:hover > a svg { transform: rotate(180deg); }

.ch-nav__dropdown li a {
  display: block;
  padding: 8px 12px;
  font-size: .85rem;
  color: var(--ch-text);
  border-radius: var(--ch-radius-sm);
  transition: background .2s, color .2s;
}

.ch-nav__dropdown li a:hover {
  background: var(--ch-bg-alt);
  color: var(--ch-accent);
}

.ch-nav__dropdown li a.is-active {
  background: var(--ch-bg-alt);
  color: var(--ch-accent);
  font-weight: 600;
}

.ch-header__phone {
  display: none;
  font-family: var(--ch-font-body);
  font-size: .85rem;
  font-weight: 600;
  color: var(--ch-accent);
  padding: 8px 18px;
  border: 1px solid var(--ch-accent);
  border-radius: var(--ch-radius);
  transition: background .25s, color .25s;
}

.ch-header__phone:hover {
  background: var(--ch-accent);
  color: var(--ch-white);
}

/* ── BURGER ── */
.ch-header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.ch-header__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ch-primary);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

.ch-header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ch-header__burger.is-open span:nth-child(2) { opacity: 0; }
.ch-header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.ch-mobile-menu {
  position: fixed;
  top: var(--ch-header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ch-bg);
  z-index: 800;
  padding: 24px 20px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s ease;
}

.ch-mobile-menu.is-open { transform: translateX(0); }

.ch-mobile-menu__list { list-style: none; }

.ch-mobile-menu__list > li > a,
.ch-mobile-menu__list > li > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ch-text);
  background: none;
  border: none;
  border-bottom: 1px solid var(--ch-border-light);
  cursor: pointer;
  font-family: var(--ch-font-body);
}

.ch-mobile-menu__list > li > button svg {
  width: 16px;
  height: 16px;
  transition: transform .25s;
}

.ch-mobile-menu__list > li > button.is-expanded svg { transform: rotate(180deg); }

.ch-mobile-menu__sub {
  list-style: none;
  display: none;
  padding-left: 16px;
}

.ch-mobile-menu__sub.is-open { display: block; }

.ch-mobile-menu__sub a {
  display: block;
  padding: 10px 0;
  font-size: .92rem;
  color: var(--ch-text-light);
  border-bottom: 1px solid var(--ch-border-light);
}

.ch-mobile-menu__sub a:hover { color: var(--ch-accent); }

.ch-mobile-menu__contact {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--ch-border);
}

.ch-mobile-menu__contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  font-weight: 500;
  color: var(--ch-accent);
}

/* ── HERO (Editorial Museum Frame) ── */
.ch-hero {
  background: var(--ch-bg-alt);
  padding: 48px 20px 56px;
}

.ch-hero__inner {
  max-width: var(--ch-max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.ch-hero__kicker {
  font-family: var(--ch-font-body);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ch-accent);
  margin-bottom: 16px;
}

.ch-hero__title {
  color: var(--ch-primary);
  margin-bottom: 20px;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
}

.ch-hero__lead {
  font-size: 1.05rem;
  color: var(--ch-text-light);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.75;
}

.ch-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ch-hero__frame {
  position: relative;
}

.ch-hero__image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--ch-radius);
  border: 3px solid var(--ch-accent2);
  box-shadow: 8px 8px 0 rgba(184,134,11,.15), var(--ch-shadow-lg);
}

.ch-hero__ribbon {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 20px;
  border-left: 2px solid var(--ch-accent2);
}

.ch-hero__milestone {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.ch-hero__milestone-year {
  font-family: var(--ch-font-heading);
  font-size: .82rem;
  font-weight: 700;
  color: var(--ch-accent);
  min-width: 40px;
  flex-shrink: 0;
}

.ch-hero__milestone-text {
  font-size: .85rem;
  color: var(--ch-text-light);
  line-height: 1.5;
}

.ch-hero__quote {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--ch-white);
  border-left: 3px solid var(--ch-accent);
  border-radius: 0 var(--ch-radius) var(--ch-radius) 0;
  box-shadow: var(--ch-shadow-sm);
}

.ch-hero__quote p {
  font-family: var(--ch-font-heading);
  font-style: italic;
  font-size: .95rem;
  color: var(--ch-primary);
  line-height: 1.6;
}

.ch-hero__quote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: .8rem;
  color: var(--ch-text-light);
}

/* ── BUTTONS ── */
.ch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ch-font-body);
  font-size: .9rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--ch-radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, transform .15s;
  text-align: center;
  line-height: 1.4;
}

.ch-btn:hover { transform: translateY(-1px); }

.ch-btn--gold {
  background: var(--ch-accent);
  color: var(--ch-white);
  border-color: var(--ch-accent);
}

.ch-btn--gold:hover {
  background: #9a7209;
  border-color: #9a7209;
  color: var(--ch-white);
}

.ch-btn--outline {
  background: transparent;
  color: var(--ch-accent);
  border-color: var(--ch-accent);
}

.ch-btn--outline:hover {
  background: var(--ch-accent);
  color: var(--ch-white);
}

.ch-btn--ghost {
  background: transparent;
  color: var(--ch-primary);
  border-color: var(--ch-border);
}

.ch-btn--ghost:hover {
  background: var(--ch-bg-alt);
  border-color: var(--ch-accent2);
}

.ch-btn--white {
  background: var(--ch-white);
  color: var(--ch-accent);
  border-color: var(--ch-white);
}

.ch-btn--white:hover {
  background: var(--ch-bg-alt);
  border-color: var(--ch-bg-alt);
}

/* ── SECTIONS ── */
.ch-section {
  padding: 64px 20px;
}

.ch-section--alt { background: var(--ch-bg-alt); }

.ch-section--dark {
  background: var(--ch-primary);
  color: #f0e6d8;
}

.ch-section--dark h2,
.ch-section--dark h3 { color: var(--ch-white); }
.ch-section--dark p { color: #d8cfc2; }

.ch-section__header {
  max-width: 640px;
  margin-bottom: 44px;
}

.ch-section__header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.ch-section__kicker {
  display: inline-block;
  font-family: var(--ch-font-body);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ch-accent);
  margin-bottom: 10px;
}

.ch-section__title {
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 12px;
}

.ch-section__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--ch-accent);
}

.ch-section__header--center .ch-section__title::after {
  left: 50%;
  transform: translateX(-50%);
}

.ch-section--dark .ch-section__title::after { background: var(--ch-accent2); }

.ch-section__desc {
  margin-top: 8px;
  color: var(--ch-text-light);
  max-width: 560px;
}

.ch-section__header--center .ch-section__desc {
  margin-left: auto;
  margin-right: auto;
}

/* ── CARD GRID ── */
.ch-grid { display: grid; gap: 24px; }
.ch-grid--2 { grid-template-columns: 1fr; }
.ch-grid--3 { grid-template-columns: 1fr; }
.ch-grid--4 { grid-template-columns: 1fr; }

/* ── CARDS ── */
.ch-card {
  background: var(--ch-white);
  border: 1px solid var(--ch-accent2);
  border-radius: var(--ch-radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}

.ch-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ch-shadow-lg);
}

.ch-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.ch-card__body { padding: 24px; }

.ch-card__title {
  font-family: var(--ch-font-heading);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.ch-card__text {
  font-size: .9rem;
  color: var(--ch-text-light);
  line-height: 1.65;
  margin-bottom: 12px;
}

.ch-card__price {
  font-family: var(--ch-font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ch-accent);
  margin-bottom: 16px;
}

.ch-card__meta {
  font-size: .82rem;
  color: var(--ch-text-light);
  margin-bottom: 8px;
}

.ch-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.ch-card__tag {
  font-size: .75rem;
  padding: 3px 10px;
  background: var(--ch-bg-alt);
  color: var(--ch-text-light);
  border-radius: var(--ch-radius-sm);
}

/* ── PACKAGE TIERS ── */
.ch-tier {
  background: var(--ch-white);
  border: 1px solid var(--ch-border);
  border-radius: var(--ch-radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}

.ch-tier:hover {
  transform: translateY(-4px);
  box-shadow: var(--ch-shadow-md);
}

.ch-tier--featured {
  border-color: var(--ch-accent);
  position: relative;
}

.ch-tier--featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ch-accent);
  color: var(--ch-white);
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: var(--ch-radius-sm);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.ch-tier__name {
  font-family: var(--ch-font-heading);
  font-size: 1.3rem;
  color: var(--ch-primary);
  margin-bottom: 8px;
}

.ch-tier__price {
  font-family: var(--ch-font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ch-accent);
  margin-bottom: 4px;
}

.ch-tier__unit {
  font-size: .82rem;
  color: var(--ch-text-light);
  margin-bottom: 20px;
}

.ch-tier__features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.ch-tier__features li {
  padding: 8px 0;
  font-size: .9rem;
  color: var(--ch-text);
  border-bottom: 1px solid var(--ch-border-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ch-tier__features li::before {
  content: "\2713";
  color: var(--ch-accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── DEPARTURE TABLE ── */
.ch-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--ch-border);
  border-radius: var(--ch-radius);
  margin-top: 20px;
}

.ch-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}

.ch-table th {
  background: var(--ch-primary);
  color: var(--ch-white);
  padding: 12px 16px;
  text-align: left;
  font-family: var(--ch-font-body);
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
}

.ch-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--ch-border-light);
  white-space: nowrap;
}

.ch-table tr:last-child td { border-bottom: none; }

.ch-table tr:nth-child(even) { background: var(--ch-bg-alt); }

.ch-table__price {
  font-weight: 600;
  color: var(--ch-accent);
}

.ch-table__status {
  font-size: .78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--ch-radius-sm);
  display: inline-block;
}

.ch-table__status--open { background: #e8f5e9; color: #2e7d32; }
.ch-table__status--limited { background: #fff3e0; color: #e65100; }
.ch-table__status--sold { background: #fce4ec; color: #c62828; }

/* ── STEPS ── */
.ch-steps { counter-reset: chstep; }

.ch-step {
  counter-increment: chstep;
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--ch-border-light);
}

.ch-step:last-child { border-bottom: none; }

.ch-step__num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ch-accent);
  color: var(--ch-white);
  font-family: var(--ch-font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ch-step__num::before { content: counter(chstep); }

.ch-step__content h3 { margin-bottom: 6px; }

.ch-step__content p {
  font-size: .9rem;
  color: var(--ch-text-light);
}

/* ── TESTIMONIALS ── */
.ch-testimonials { display: grid; gap: 24px; grid-template-columns: 1fr; }

.ch-testimonial {
  background: var(--ch-white);
  border: 1px solid var(--ch-border);
  border-radius: var(--ch-radius);
  padding: 28px 24px;
}

.ch-section--dark .ch-testimonial {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
}

.ch-testimonial__quote {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--ch-text-light);
  margin-bottom: 18px;
  font-style: italic;
}

.ch-section--dark .ch-testimonial__quote { color: #d8cfc2; }

.ch-testimonial__quote::before {
  content: "\201C";
  font-family: var(--ch-font-heading);
  font-size: 2rem;
  color: var(--ch-accent2);
  line-height: 0;
  vertical-align: -.3em;
  margin-right: 4px;
}

.ch-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ch-testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ch-accent);
  color: var(--ch-white);
  font-family: var(--ch-font-heading);
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ch-testimonial__name {
  font-weight: 600;
  font-size: .88rem;
  color: var(--ch-primary);
}

.ch-section--dark .ch-testimonial__name { color: var(--ch-white); }

.ch-testimonial__role {
  font-size: .78rem;
  color: var(--ch-text-light);
}

.ch-section--dark .ch-testimonial__role { color: #bfb5a5; }

/* ── FAQ ── */
.ch-faq-list { max-width: 800px; }
.ch-faq-list--center { margin: 0 auto; }

.ch-faq-item { border-bottom: 1px solid var(--ch-border); }

.ch-faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ch-font-heading);
  font-size: .98rem;
  font-weight: 600;
  color: var(--ch-primary);
  text-align: left;
  line-height: 1.4;
  gap: 12px;
}

.ch-faq-item__q svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--ch-accent);
  fill: none;
  stroke-width: 2;
  transition: transform .25s;
}

.ch-faq-item.is-open .ch-faq-item__q svg { transform: rotate(180deg); }

.ch-faq-item__a {
  display: none;
  padding-bottom: 18px;
  font-size: .9rem;
  color: var(--ch-text-light);
  line-height: 1.75;
}

.ch-faq-item.is-open .ch-faq-item__a { display: block; }
.ch-faq-item__a a { color: var(--ch-accent); font-weight: 500; }

.ch-faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.ch-faq-cat-btn {
  padding: 7px 16px;
  border: 1px solid var(--ch-border);
  border-radius: var(--ch-radius);
  background: none;
  font-size: .82rem;
  font-weight: 500;
  color: var(--ch-text);
  cursor: pointer;
  font-family: var(--ch-font-body);
  transition: background .2s, border-color .2s, color .2s;
}

.ch-faq-cat-btn:hover,
.ch-faq-cat-btn.is-active {
  background: var(--ch-accent);
  border-color: var(--ch-accent);
  color: var(--ch-white);
}

/* ── CTA SECTION ── */
.ch-cta {
  text-align: center;
  padding: 64px 20px;
  background: var(--ch-bg-alt);
}

.ch-cta h2 {
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 16px;
}

.ch-cta h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--ch-accent);
}

.ch-cta p {
  color: var(--ch-text-light);
  max-width: 520px;
  margin: 0 auto 28px;
}

/* ── FORMS (Underline style) ── */
.ch-form__row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.ch-form__row--2 { grid-template-columns: 1fr; }

.ch-form__field { display: flex; flex-direction: column; }

.ch-form__label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--ch-primary);
  margin-bottom: 6px;
  font-family: var(--ch-font-body);
}

.ch-form__input,
.ch-form__select,
.ch-form__textarea {
  padding: 14px 4px 12px;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--ch-accent2);
  font-size: .92rem;
  color: var(--ch-text);
  font-family: var(--ch-font-body);
  outline: none;
  transition: border-color .2s;
  min-height: 48px;
  border-radius: 0;
}

.ch-form__input:focus,
.ch-form__select:focus,
.ch-form__textarea:focus {
  border-bottom-color: var(--ch-accent);
}

.ch-form__input::placeholder,
.ch-form__textarea::placeholder {
  color: var(--ch-text-light);
  opacity: .88;
}

.ch-form__textarea { resize: vertical; min-height: 120px; padding-top: 16px; }

.ch-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a6f63' stroke-width='2'%3E%3Cpath d='M8 10l4 3 4-3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

/* ── PAGE HERO (subpages) ── */
.ch-page-hero {
  background: var(--ch-primary);
  color: var(--ch-white);
  padding: 44px 20px 52px;
  text-align: center;
}

.ch-page-hero h1 { color: var(--ch-white); margin-bottom: 10px; }
.ch-page-hero p { color: #d8cfc2; max-width: 540px; margin: 0 auto; }

.ch-breadcrumb {
  padding: 14px 0 18px;
  font-size: .8rem;
  color: #bfb5a5;
}

.ch-breadcrumb a { color: var(--ch-accent2); font-weight: 500; }
.ch-breadcrumb a:hover { color: var(--ch-white); }
.ch-breadcrumb span { margin: 0 6px; }

/* ── PROSE ── */
.ch-prose { max-width: 800px; }
.ch-prose h3 { margin: 24px 0 8px; }
.ch-prose p { color: var(--ch-text); margin-bottom: 14px; }
.ch-prose--center { margin-left: auto; margin-right: auto; }

/* ── TIMELINE ── */
.ch-timeline {
  position: relative;
  padding-left: 28px;
}

.ch-timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--ch-border);
}

.ch-timeline__item {
  position: relative;
  padding-bottom: 32px;
}

.ch-timeline__item:last-child { padding-bottom: 0; }

.ch-timeline__item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ch-accent);
  border: 3px solid var(--ch-bg);
  box-shadow: 0 0 0 2px var(--ch-accent2);
}

.ch-timeline__year {
  font-family: var(--ch-font-heading);
  font-size: .78rem;
  font-weight: 700;
  color: var(--ch-accent);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}

.ch-timeline__title {
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.ch-timeline__text {
  font-size: .88rem;
  color: var(--ch-text-light);
}

/* ── TEAM GRID ── */
.ch-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.ch-team-member { text-align: center; }

.ch-team-member__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--ch-accent);
  color: var(--ch-white);
  font-family: var(--ch-font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.ch-team-member__name {
  font-family: var(--ch-font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.ch-team-member__title {
  font-size: .8rem;
  color: var(--ch-accent);
  font-weight: 600;
  margin-bottom: 8px;
}

.ch-team-member__bio {
  font-size: .86rem;
  color: var(--ch-text-light);
  line-height: 1.6;
}

/* ── VALUE CARDS ── */
.ch-value-card {
  display: flex;
  gap: 16px;
}

.ch-value-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--ch-radius);
  background: var(--ch-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ch-value-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--ch-accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ch-value-card h3 { font-size: .98rem; margin-bottom: 6px; }
.ch-value-card p { font-size: .88rem; color: var(--ch-text-light); }

/* ── GUIDE TIERS ── */
.ch-guide-tier {
  background: var(--ch-white);
  border: 1px solid var(--ch-border);
  border-radius: var(--ch-radius);
  padding: 28px 24px;
  transition: transform .25s, box-shadow .25s;
}

.ch-guide-tier:hover {
  transform: translateY(-3px);
  box-shadow: var(--ch-shadow-md);
}

.ch-guide-tier__name {
  font-family: var(--ch-font-heading);
  font-size: 1.2rem;
  color: var(--ch-primary);
  margin-bottom: 4px;
}

.ch-guide-tier__price {
  font-family: var(--ch-font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ch-accent);
  margin-bottom: 14px;
}

.ch-guide-tier__list {
  list-style: none;
  margin-bottom: 20px;
}

.ch-guide-tier__list li {
  padding: 6px 0;
  font-size: .88rem;
  color: var(--ch-text-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.ch-guide-tier__list li::before {
  content: "\2713";
  color: var(--ch-accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── LEGAL PAGES ── */
.ch-legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 44px 20px 72px;
}

.ch-legal h2 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 1.25rem;
  position: relative;
  padding-bottom: 12px;
}

.ch-legal h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--ch-accent);
}

.ch-legal h3 { margin-top: 20px; margin-bottom: 8px; }

.ch-legal p {
  margin-bottom: 12px;
  color: var(--ch-text);
  font-size: .92rem;
  line-height: 1.8;
}

.ch-legal ul, .ch-legal ol {
  margin: 12px 0 16px 20px;
  font-size: .92rem;
  color: var(--ch-text);
  line-height: 1.8;
}

.ch-legal li { margin-bottom: 4px; }

.ch-legal__updated {
  font-size: .8rem;
  color: var(--ch-text-light);
  margin-bottom: 24px;
}

/* ── THANK YOU ── */
.ch-thankyou {
  text-align: center;
  padding: 80px 20px;
  max-width: 560px;
  margin: 0 auto;
}

.ch-thankyou__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--ch-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.ch-thankyou__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--ch-accent);
  fill: none;
  stroke-width: 2;
}

.ch-thankyou h1 { margin-bottom: 14px; }
.ch-thankyou p { color: var(--ch-text-light); margin-bottom: 24px; }
.ch-thankyou__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── 404 ── */
.ch-error-page {
  text-align: center;
  padding: 100px 20px;
}

.ch-error-page__code {
  font-family: var(--ch-font-heading);
  font-size: 6rem;
  font-weight: 700;
  color: var(--ch-accent2);
  line-height: 1;
}

.ch-error-page h1 { margin: 16px 0 12px; }
.ch-error-page p { color: var(--ch-text-light); margin-bottom: 28px; }

/* ── FOOTER (Style H: Asymmetric Two-Column) ── */
.ch-footer {
  background: var(--ch-primary);
  color: #d8cfc2;
  padding-top: 56px;
}

.ch-footer__inner {
  max-width: var(--ch-max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.ch-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.ch-footer__brand {
  font-family: var(--ch-font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ch-white);
  display: inline-block;
  margin-bottom: 14px;
}

.ch-footer__brand:hover { color: var(--ch-accent2); }

.ch-footer__story {
  font-size: .88rem;
  color: #bfb5a5;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 480px;
}

.ch-footer__contact-list { list-style: none; }

.ch-footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: .84rem;
  color: #bfb5a5;
}

.ch-footer__contact-list li svg {
  width: 16px;
  height: 16px;
  stroke: var(--ch-accent2);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 3px;
}

.ch-footer__right { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.ch-footer__group-title {
  font-family: var(--ch-font-heading);
  font-size: .85rem;
  font-weight: 700;
  color: var(--ch-white);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.ch-footer__links {
  list-style: none;
}

.ch-footer__links li { margin-bottom: 6px; }

.ch-footer__links a {
  font-size: .84rem;
  color: #bfb5a5;
  transition: color .2s;
}

.ch-footer__links a:hover { color: var(--ch-accent2); }

.ch-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

.ch-footer__bottom p + p { margin-top: 4px; }

/* ── COOKIE BANNER ── */
.ch-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ch-primary);
  color: #d8cfc2;
  padding: 16px 20px;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0,0,0,.18);
  transform: translateY(100%);
  transition: transform .35s ease;
}

.ch-cookie.visible { transform: translateY(0); }

.ch-cookie__inner {
  max-width: var(--ch-max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ch-cookie__inner p {
  font-size: .86rem;
  color: #bfb5a5;
  flex: 1;
  min-width: 200px;
}

.ch-cookie__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* ── BACK TO TOP ── */
.ch-totop {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ch-accent);
  color: var(--ch-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s, visibility .3s, background .2s;
  z-index: 700;
  box-shadow: var(--ch-shadow-md);
}

.ch-totop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ch-totop:hover { background: var(--ch-primary); }

.ch-totop svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

/* ── FADE IN ── */
.ch-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.ch-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── CONTACT SPLIT ── */
.ch-contact-split {
  display: grid;
  grid-template-columns: 1fr;
}

.ch-contact-dark {
  background: var(--ch-primary);
  color: #d8cfc2;
  padding: 44px 24px;
}

.ch-contact-dark h2 { color: var(--ch-white); }
.ch-contact-dark h2::after { background: var(--ch-accent2); }
.ch-contact-dark p { color: #bfb5a5; }

.ch-contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.ch-contact-info-item__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--ch-radius);
  background: rgba(184,134,11,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ch-contact-info-item__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--ch-accent2);
  fill: none;
  stroke-width: 2;
}

.ch-contact-info-item h4 { color: var(--ch-white); font-size: .86rem; margin-bottom: 2px; }
.ch-contact-info-item p { font-size: .84rem; color: #bfb5a5; }

.ch-contact-light { padding: 44px 24px; }

/* ── RESPONSIVE ── */
@media (min-width: 480px) {
  .ch-form__row--2 { grid-template-columns: 1fr 1fr; }
  .ch-hero__image { height: 360px; }
}

@media (min-width: 768px) {
  .ch-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .ch-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .ch-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .ch-testimonials { grid-template-columns: repeat(2, 1fr); }
  .ch-team-grid { grid-template-columns: repeat(2, 1fr); }
  .ch-contact-split { grid-template-columns: 1fr 1fr; }
  .ch-section { padding: 80px 20px; }
  .ch-hero { padding: 64px 20px 72px; }
  .ch-hero__inner { grid-template-columns: 1fr 1fr; }
  .ch-hero__image { height: 400px; }
  .ch-card__image { height: 220px; }
  .ch-footer__grid { grid-template-columns: 1.4fr 1fr; }
}

@media (min-width: 1024px) {
  .ch-nav { display: flex; }
  .ch-header__phone { display: inline-flex; }
  .ch-header__burger { display: none; }
  .ch-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .ch-grid--4 { grid-template-columns: repeat(4, 1fr); }
  .ch-testimonials { grid-template-columns: repeat(3, 1fr); }
  .ch-team-grid { grid-template-columns: repeat(4, 1fr); }
  .ch-contact-dark, .ch-contact-light { padding: 56px 40px; }
}

@media (min-width: 1200px) {
  .ch-section { padding: 96px 20px; }
  .ch-hero { padding: 80px 20px 88px; }
  .ch-hero__image { height: 440px; }
}

@media print {
  .ch-header, .ch-cookie, .ch-totop, .ch-mobile-menu { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
}
