
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700&family=Bebas+Neue&display=swap');

:root {
  --ccm-bg: #0d0f0d;
  --ccm-card: #121512;
  --ccm-card-2: #161a16;
  --ccm-primary: #61d83c;
  --ccm-primary-2: #4fbe2c;
  --ccm-text: #eef5ec;
  --ccm-muted: #9ea69a;
  --ccm-border: rgba(255,255,255,.08);
  --ccm-shadow: 0 20px 60px rgba(0,0,0,.28);
  --ccm-radius: 24px;
}

body.ccm-enabled {
  background: var(--ccm-bg);
  color: var(--ccm-text);
}

.ccm-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.ccm-section { padding: 88px 0; position: relative; }
.ccm-section--tight { padding-top: 36px; padding-bottom: 36px; }
.ccm-section--soft { background: rgba(255,255,255,.02); }

.ccm-grid { display: grid; gap: 24px; }
.ccm-grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.ccm-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.ccm-grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }

.ccm-card {
  background: var(--ccm-card);
  border: 1px solid var(--ccm-border);
  border-radius: var(--ccm-radius);
  box-shadow: var(--ccm-shadow);
}

.ccm-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.ccm-section-head.is-stack,
.ccm-section-head.is-center {
  display: block;
}

.ccm-section-head.is-center { text-align: center; }

.ccm-section-head h2,
.ccm-split__body h2,
.ccm-cta-box h2 {
  margin: 0 0 10px;
  font: 700 clamp(32px, 4vw, 56px)/1.04 'Playfair Display', serif;
  color: var(--ccm-text);
}

.ccm-section-head p,
.ccm-split__body p,
.ccm-cta-box p,
.ccm-card p,
.ccm-hero__desc {
  color: var(--ccm-muted);
  line-height: 1.75;
}

.ccm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.ccm-eyebrow span {
  width: 46px; height: 1px; background: rgba(97,216,60,.6); display:block;
}
.ccm-eyebrow em {
  color: rgba(97,216,60,.95);
  font-style: normal;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}
.ccm-eyebrow--small em { font-size: 11px; }

.ccm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.ccm-btn:hover { transform: translateY(-2px); }
.ccm-btn--primary {
  color: #081005;
  background: linear-gradient(180deg, #7df257 0%, var(--ccm-primary) 100%);
  box-shadow: 0 14px 34px rgba(97,216,60,.24);
}
.ccm-btn--ghost {
  color: var(--ccm-text);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--ccm-border);
}
.ccm-btn--sm { min-height: 42px; padding: 0 18px; font-size: 13px; }

.ccm-link { color: var(--ccm-primary); text-decoration: none; font-weight: 700; }

.ccm-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #090b09;
}
.ccm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--ccm-hero-image);
  background-size: cover;
  background-position: center center;
  transform: scale(1.02);
}
.ccm-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9,11,9,.94) 0%, rgba(9,11,9,.86) 38%, rgba(9,11,9,.45) 100%),
    linear-gradient(180deg, rgba(9,11,9,.40) 0%, rgba(9,11,9,.10) 40%, rgba(9,11,9,.74) 100%);
}
.ccm-hero__glow {
  position: absolute;
  left: 18%;
  bottom: -120px;
  width: 480px;
  height: 480px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(97,216,60,.13) 0%, rgba(97,216,60,0) 70%);
  filter: blur(10px);
}
.ccm-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 88px;
  padding-bottom: 48px;
}
.ccm-hero__title {
  margin: 0 0 18px;
  color: var(--ccm-text);
}
.ccm-hero__title > span {
  display:block;
  font-family: 'Bebas Neue', sans-serif;
  line-height: .95;
  letter-spacing: .03em;
  font-size: clamp(64px, 11vw, 160px);
}
.ccm-hero__title > span.is-primary {
  color: var(--ccm-primary);
  text-shadow: 0 0 34px rgba(97,216,60,.32);
}
.ccm-hero__title > span.is-sub {
  margin-top: 8px;
  font-size: clamp(28px, 4vw, 58px);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: rgba(238,245,236,.62);
}
.ccm-hero__desc { max-width: 620px; margin: 0 0 34px; font-size: 18px; }
.ccm-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.ccm-badges { display: flex; flex-wrap: wrap; gap: 22px; color: rgba(238,245,236,.55); font-size: 14px; }
.ccm-badges span { display:inline-flex; align-items:center; gap:10px; }
.ccm-badges i { width: 8px; height: 8px; display:block; background: var(--ccm-primary); border-radius:999px; box-shadow: 0 0 12px rgba(97,216,60,.55); }

.ccm-card--feature { padding: 26px; }
.ccm-feature-icon {
  width: 48px; height: 48px; border-radius: 14px; background: rgba(97,216,60,.10); border: 1px solid rgba(97,216,60,.16); margin-bottom: 16px;
}
.ccm-card--feature h3,
.ccm-card--mini h3,
.ccm-card--review strong,
.ccm-room-body h3,
.ccm-product-body h3,
.ccm-species-body h3 { color: var(--ccm-text); margin: 0 0 8px; }

.ccm-card--product { overflow: hidden; }
.ccm-product-media {
  position: relative; display:block; aspect-ratio: 3 / 4; background: #0a0c0a; overflow: hidden;
}
.ccm-product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.ccm-card--product:hover .ccm-product-media img { transform: scale(1.05); }
.ccm-pill {
  position: absolute; top: 14px; left: 14px; padding: 8px 12px; border-radius: 999px; font-size: 12px; font-weight: 700;
  background: rgba(97,216,60,.16); color: var(--ccm-primary); border: 1px solid rgba(97,216,60,.24);
}
.ccm-product-body { padding: 18px; }
.ccm-product-body a { color: inherit; text-decoration: none; }
.ccm-product-meta { color: var(--ccm-primary); font-weight: 700; margin-bottom: 14px; }
.ccm-product-actions { display: flex; gap: 10px; align-items: center; }
.ccm-product-actions .button,
.ccm-product-actions .added_to_cart {
  min-height: 42px; padding: 0 18px; border-radius: 14px; text-decoration:none;
}
.ccm-product-actions .button {
  background: linear-gradient(180deg, #7df257 0%, var(--ccm-primary) 100%); color: #091107; border: 0;
}
.ccm-product-actions .added_to_cart { color: var(--ccm-primary); }

.ccm-card--tile {
  position: relative; min-height: 280px; display:flex; align-items:flex-end; padding: 24px; text-decoration:none; overflow:hidden; background:#0b0d0b;
}
.ccm-card--tile::before {
  content:''; position:absolute; inset:0; background-image: var(--ccm-tile-image); background-size: cover; background-position: center center; transition: transform .7s ease;
}
.ccm-card--tile:hover::before { transform: scale(1.06); }
.ccm-card__shade {
  position:absolute; inset:0; background: linear-gradient(180deg, rgba(9,11,9,.16) 0%, rgba(9,11,9,.75) 100%);
}
.ccm-card--tile strong {
  position: relative; z-index: 1; font-size: 28px; color: #fff; font-family: 'Playfair Display', serif;
}

.ccm-card--species, .ccm-card--review, .ccm-card--room { overflow:hidden; }
.ccm-species-media, .ccm-room-media { aspect-ratio: 4 / 3; background:#090b09; overflow:hidden; }
.ccm-species-media img, .ccm-room-media img { width:100%; height:100%; object-fit:cover; transition: transform .6s ease; }
.ccm-card--species:hover img, .ccm-card--room:hover img { transform: scale(1.05); }
.ccm-species-body, .ccm-room-body { padding: 18px; }
.ccm-chip {
  display:inline-flex; align-items:center; min-height: 30px; padding: 0 12px; border-radius: 999px; background: rgba(97,216,60,.10); color: var(--ccm-primary); font-size: 12px; font-weight: 700; margin-bottom: 12px;
}
.ccm-room-body p, .ccm-card--review p { margin: 0; }
.ccm-stars { color: #ffd66a; margin-bottom: 12px; letter-spacing: .18em; }

.ccm-split {
  display:grid; grid-template-columns: 1.06fr .94fr; gap: 36px; align-items: center;
}
.ccm-split--wide { margin-bottom: 28px; }
.ccm-split__media { overflow:hidden; border-radius: 30px; border: 1px solid var(--ccm-border); box-shadow: var(--ccm-shadow); }
.ccm-split__media img { width:100%; height:100%; display:block; object-fit:cover; }
.ccm-stack { display:grid; gap: 16px; margin-top: 22px; }
.ccm-card--mini { padding: 20px; }

.ccm-rooms { margin-top: 18px; }
.ccm-empty {
  padding: 24px; border-radius: 20px; background: var(--ccm-card); border: 1px solid var(--ccm-border); color: var(--ccm-muted);
}

.ccm-cta-box {
  position: relative; overflow:hidden; text-align:center; padding: 64px 24px; border-radius: 34px;
  background: linear-gradient(135deg, rgba(97,216,60,.16) 0%, rgba(97,216,60,.08) 42%, rgba(97,216,60,.03) 100%);
  border: 1px solid rgba(97,216,60,.22);
}
.ccm-cta-box__glow {
  position:absolute; inset:0; background: radial-gradient(circle at center, rgba(97,216,60,.12) 0%, rgba(97,216,60,0) 65%); pointer-events:none;
}
.ccm-cta-box > * { position: relative; z-index:1; }

.ccm-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.ccm-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1200px) {
  .ccm-grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ccm-grid--3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 900px) {
  .ccm-container { width: min(1280px, calc(100% - 28px)); }
  .ccm-section { padding: 64px 0; }
  .ccm-split, .ccm-grid--3, .ccm-grid--2, .ccm-section-head { grid-template-columns: 1fr; display:block; }
  .ccm-section-head { margin-bottom: 28px; }
  .ccm-section-head > * + * { margin-top: 16px; }
}

@media (max-width: 680px) {
  .ccm-grid--4, .ccm-grid--3, .ccm-grid--2 { grid-template-columns: 1fr; display:grid; }
  .ccm-hero__content { padding-top: 108px; }
  .ccm-hero { min-height: 92vh; }
  .ccm-hero__desc { font-size: 16px; }
  .ccm-badges { gap: 12px; font-size: 13px; }
}
