/* ─────────────────────────────────────────────
   Cruisin' with the Colemans — Homepage v2
   Brand-red palette · polaroid collages · kraft cream
   ───────────────────────────────────────────── */

:root {
  --cc-red: #b14a3d;
  --cc-red-dark: #923a31;
  --cc-orange: #d97a35;
  --cc-cream: #f0e8d5;
  --cc-cream-warm: #ebe1c8;
  --cc-ink: #000;
  --cc-ink-soft: #3a3530;
}

/* ───── Global body margin reset ───── */
html, body { margin: 0 !important; padding: 0; }
body { background: var(--cc-cream); }

/* ───── Reset & base on body for the front page ───── */
.cc-home,
.cc-home * { box-sizing: border-box; }

.cc-home {
  background: var(--cc-cream);
  color: var(--cc-ink);
  font-family: 'Inter Tight', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
}

.cc-home img { display: block; max-width: 100%; }
.cc-home p { margin: 0 0 1em; }
.cc-home h1, .cc-home h2, .cc-home h3, .cc-home h4 { margin: 0; }
.cc-home h2 { margin-bottom: 32px; }

.cc-home .serif { font-family: 'Fraunces', Georgia, serif; }
.cc-home .hand  { font-family: 'Caveat', cursive; }
.cc-home .mono  { font-family: 'JetBrains Mono', ui-monospace, monospace; }

/* ───── Buttons & labels ───── */
.cc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  color: var(--cc-red);
  border: 1px solid currentColor;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, background .2s ease, color .2s ease;
}
.cc-btn:hover { transform: translateY(-1px); }
/* Plain (secondary) buttons use brand red and fill on hover. The --red,
   --ghost, --outline variants set their own colors and are unaffected. */
.cc-btn:not(.cc-btn--red):not(.cc-btn--ghost):not(.cc-btn--outline):hover { background: var(--cc-red); color: #fff; }
.cc-btn--red {
  background: var(--cc-red);
  color: #fff;
  border-color: var(--cc-red);
}
.cc-btn--red:hover { background: var(--cc-red-dark); border-color: var(--cc-red-dark); color: #fff; }
.cc-btn--ghost {
  border-color: #fff;
  color: #fff;
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(6px);
}

.cc-arrow {
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 10px;
}
.cc-arrow path { stroke: currentColor; stroke-width: 1.4; fill: none; }

.cc-ribbon {
  display: inline-block;
  background: var(--cc-red);
  color: #fff;
  padding: 9px 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .2em;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid var(--cc-red);
  outline: 1px dashed rgba(255,255,255,.65);
  outline-offset: -5px;
  box-shadow: 0 4px 10px rgba(0,0,0,.18);
}
.cc-ribbon--ink {
  background: var(--cc-ink);
  border-color: var(--cc-ink);
}

/* ───── Polaroid ───── */
.cc-polaroid {
  position: relative;
  background: #fff;
  padding: 14px;
  padding-bottom: 50px;
  box-shadow: 0 18px 44px rgba(40,30,15,.18);
}
.cc-polaroid__img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d7cdb6;
}
.cc-polaroid__img img { width: 100%; height: 100%; object-fit: cover; }
.cc-polaroid__stamp {
  position: absolute;
  width: 120px;
  height: 120px;
  z-index: 3;
  pointer-events: none;
  transform: rotate(-8deg);
  filter: drop-shadow(0 8px 14px rgba(20,15,10,.35));
}
.cc-polaroid__stamp--br { right: -60px; bottom: -40px; }
.cc-polaroid__stamp--tl { left: -60px; top: -40px; transform: rotate(6deg); }
.cc-polaroid__stamp--tr { right: -60px; top: -40px; transform: rotate(10deg); }
@media (max-width: 720px) {
  .cc-polaroid__stamp { width: 84px; height: 84px; }
  .cc-polaroid__stamp--br { right: -32px; bottom: -24px; }
  .cc-polaroid__stamp--tl { left: -32px; top: -24px; }
  .cc-polaroid__stamp--tr { right: -32px; top: -24px; }
}
.cc-polaroid__caption {
  position: absolute;
  bottom: 12px;
  left: 0; right: 0;
  text-align: center;
  font-size: 22px;
  color: var(--cc-ink);
  font-family: 'Caveat', cursive;
}

/* ───── 1 · Top bar / mini nav (HEADER.PHP) ───── */
.cc-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: var(--cc-cream);
  border-bottom: 1px solid rgba(42,38,34,.07);
  position: relative;
  z-index: 5;
  font-family: 'Inter Tight', sans-serif;
}
.cc-topbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cc-red);
  color: #fff;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--cc-red);
  border-radius: 999px;
}
.cc-topbar__cta:hover { background: var(--cc-red-dark); color: #fff; }
/* Content links use brand color (never browser-default blue/purple). */
.entry-content a { color: var(--cc-red); text-decoration: underline; }
.entry-content a:hover,
.entry-content a:focus { color: var(--cc-red-dark); }
.cc-topbar__logo { height: 36px; width: auto; }
.cc-topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cc-topbar__menu {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

/* ───── Drawer menu ───── */
.cc-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
}
.cc-drawer.is-open {
  pointer-events: auto;
  opacity: 1;
}
.cc-drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(20, 15, 10, .55);
  backdrop-filter: blur(2px);
}
.cc-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 92vw);
  background: var(--cc-cream);
  color: var(--cc-ink);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.2,.7,.2,1);
  box-shadow: -20px 0 60px rgba(40,30,15,.25);
}
.cc-drawer.is-open .cc-drawer__panel {
  transform: translateX(0);
}
.cc-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(42,38,34,.1);
}
.cc-drawer__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cc-red);
  font-weight: 700;
}
.cc-drawer__close {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid rgba(42,38,34,.18);
  color: var(--cc-ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0;
  transition: border-color .15s ease, color .15s ease;
}
.cc-drawer__close:hover {
  border-color: var(--cc-red);
  color: var(--cc-red);
}
.cc-drawer__nav {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
}
.cc-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cc-drawer__list li {
  border-bottom: 1px solid rgba(42,38,34,.07);
}
.cc-drawer__list li:last-child {
  border-bottom: none;
}
.cc-drawer__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--cc-ink);
  text-decoration: none;
  transition: color .15s ease, background .15s ease;
}
.cc-drawer__list a::after {
  content: '→';
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--cc-red);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .15s ease, transform .15s ease;
}
.cc-drawer__list a:hover,
.cc-drawer__list .current-menu-item > a,
.cc-drawer__list .current_page_item > a {
  color: var(--cc-red);
  background: rgba(177, 74, 61, .04);
}
.cc-drawer__list a:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.cc-drawer__list .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0 0 8px 16px;
  background: rgba(42,38,34,.03);
}
.cc-drawer__list .sub-menu a {
  font-size: 16px;
  padding: 12px 28px;
}

/* ───── Mega menu inside the drawer ───── */
.cc-mega { padding: 0; }
.cc-mega__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cc-mega__item {
  border-bottom: 1px solid rgba(42,38,34,.07);
}
.cc-mega__item:last-child { border-bottom: none; }
.cc-mega__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 28px;
  text-decoration: none;
  color: var(--cc-ink);
  cursor: pointer;
  list-style: none;
  transition: background .15s ease, color .15s ease;
}
.cc-mega__row::-webkit-details-marker,
.cc-mega__row::marker { display: none; }
.cc-mega__row:hover { background: rgba(177,74,61,.05); color: var(--cc-red); }
.cc-mega__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.cc-mega__title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.15;
  color: inherit;
}
.cc-mega__sub-title {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.15;
  color: inherit;
}
.cc-mega__desc {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: .01em;
  color: var(--cc-ink-soft);
  opacity: .8;
}
.cc-mega__row:hover .cc-mega__desc { opacity: 1; }
.cc-mega__arrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  color: var(--cc-red);
  flex-shrink: 0;
  transition: transform .15s ease;
}
.cc-mega__row:hover .cc-mega__arrow { transform: translateX(3px); }

/* Parent (expandable) rows */
.cc-mega__chev {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.cc-mega__chev::before,
.cc-mega__chev::after {
  content: '';
  position: absolute;
  background: var(--cc-red);
  border-radius: 1px;
  transition: transform .22s ease, opacity .22s ease;
}
.cc-mega__chev::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  margin-top: -1px;
}
.cc-mega__chev::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  margin-left: -1px;
}
.cc-mega__group[open] .cc-mega__chev::after {
  transform: rotate(90deg);
  opacity: 0;
}
.cc-mega__group[open] > .cc-mega__row--parent {
  background: rgba(177,74,61,.04);
}
.cc-mega__sub {
  list-style: none;
  margin: 0;
  padding: 4px 0 12px;
  background: rgba(42,38,34,.02);
  border-top: 1px solid rgba(42,38,34,.06);
}
.cc-mega__sub li {
  border-bottom: 1px dashed rgba(42,38,34,.06);
}
.cc-mega__sub li:last-child { border-bottom: none; }
.cc-mega__sub-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 28px 12px 44px;
  text-decoration: none;
  color: var(--cc-ink);
  transition: background .15s ease, color .15s ease;
}
.cc-mega__sub-row:hover { background: rgba(177,74,61,.06); color: var(--cc-red); }
.cc-mega__sub-row .cc-mega__arrow { font-size: 13px; }
.cc-drawer__foot {
  padding: 24px 28px;
  border-top: 1px solid rgba(42,38,34,.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.cc-drawer__foot-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.cc-drawer__meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--cc-ink-soft);
  text-transform: lowercase;
}
.cc-drawer__meta a {
  color: var(--cc-ink-soft);
  text-decoration: underline;
}
.cc-drawer__meta a:hover {
  color: var(--cc-red);
}
/* Outline brand button — secondary to .cc-btn--red on the cream drawer */
.cc-btn--outline {
  background: transparent;
  color: var(--cc-red);
  border-color: var(--cc-red);
}
.cc-btn--outline:hover {
  background: var(--cc-red);
  color: #fff;
  border-color: var(--cc-red);
}

/* Body lock when drawer is open */
body.cc-drawer-open {
  overflow: hidden;
}

/* Topbar hamburger active state */
.cc-topbar__menu[aria-expanded="true"] svg rect:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  transform-origin: center;
}
.cc-topbar__menu[aria-expanded="true"] svg rect:nth-child(2) {
  opacity: 0;
}
.cc-topbar__menu[aria-expanded="true"] svg rect:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  transform-origin: center;
}
.cc-topbar__menu svg rect {
  transition: transform .2s ease, opacity .2s ease;
}

/* ───── 2 · Hero ───── */
.cc-hero { position: relative; padding: 20px 24px 0; background: var(--cc-cream); }
.cc-hero__media {
  position: relative;
  aspect-ratio: 16 / 8.2;
  overflow: hidden;
  color: #fff;
}
.cc-hero__media img,
.cc-hero__media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 75%;
  animation: cc-kenburns 22s ease-in-out infinite alternate;
}
.cc-hero__media video { animation: none; }
.cc-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,15,10,.35) 0%, rgba(20,15,10,.15) 30%, rgba(20,15,10,.55) 70%, rgba(20,15,10,.85) 100%);
}
.cc-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 64px 80px;
}
.cc-hero__kicker {
  font-family: 'Caveat', cursive;
  font-size: 38px;
  margin-bottom: -10px;
  color: #fff;
  opacity: .92;
  font-style: italic;
}
.cc-hero__title {
  font-family: 'Fraunces', serif;
  font-size: 116px;
  font-weight: 300;
  line-height: .92;
  margin: 0;
  letter-spacing: -0.035em;
  max-width: 1100px;
  font-style: italic;
  color: #fff;
}
.cc-hero__title em { font-style: italic; font-weight: 400; }
.cc-hero__lede {
  font-size: 17px;
  line-height: 1.55;
  max-width: 620px;
  opacity: .92;
  margin: 28px 0 28px;
  color: #fff;
}
.cc-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.cc-hero__ctas .cc-btn { padding: 16px 28px; }

@keyframes cc-kenburns {
  0%   { transform: scale(1.0) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1%, -2%); }
}

/* ───── 3 · As Seen In dark band ───── */
.cc-asseen {
  background: var(--cc-ink);
  color: var(--cc-cream);
  padding: 36px 24px;
}
.cc-asseen__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.cc-asseen__col { display: flex; align-items: center; gap: 18px; }
.cc-asseen__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--cc-red);
  font-weight: 700;
  margin-bottom: 6px;
}
.cc-asseen__sub {
  font-size: 11px;
  opacity: .55;
  letter-spacing: .04em;
  max-width: 130px;
  line-height: 1.4;
}
.cc-asseen__wdtn { height: 56px; width: auto; }
.cc-asseen__why {
  border-left: 1px solid rgba(240,232,213,.13);
  border-right: 1px solid rgba(240,232,213,.13);
  padding: 0 36px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "img title"
    "copy copy";
  column-gap: 20px;
  row-gap: 14px;
  align-items: center;
}
.cc-asseen__portrait {
  grid-area: img;
  width: 96px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.cc-asseen__why-title {
  grid-area: title;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-style: italic;
  margin: 0;
  color: var(--cc-cream);
  font-weight: 500;
}
.cc-asseen__why-copy {
  grid-area: copy;
  font-size: 12.5px;
  line-height: 1.55;
  opacity: .75;
  margin: 0;
}
.cc-asseen__reviews {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.cc-asseen__reviews img { height: 72px; width: auto; }
.cc-asseen__reviews p {
  font-size: 11.5px;
  opacity: .7;
  line-height: 1.45;
  max-width: 200px;
  margin: 0;
}

/* ───── 4 · Your Adventure ───── */
.cc-adventure {
  position: relative;
  padding: 120px 64px 100px;
  background: var(--cc-cream);
}
.cc-adventure__deco-ivy {
  position: absolute;
  top: 0;
  left: -80px;
  width: 360px;
  opacity: .85;
  pointer-events: none;
}
.cc-adventure__deco-palm {
  position: absolute;
  bottom: 0;
  right: -120px;
  width: 380px;
  opacity: .8;
  pointer-events: none;
  transform: rotate(90deg);
  transform-origin: center;
}
.cc-adventure__inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 100px;
  align-items: flex-start;
}
.cc-adventure__collage { position: relative; height: 580px; }
.cc-adventure__collage .cc-polaroid:nth-child(1) {
  position: absolute; top: 0; left: 30px;
  width: 420px; transform: rotate(-5deg);
}
.cc-adventure__collage .cc-polaroid:nth-child(1) .cc-polaroid__img { aspect-ratio: 4/3; }
.cc-adventure__collage .cc-polaroid:nth-child(2) {
  position: absolute; top: 320px; left: 0;
  width: 300px; transform: rotate(6deg);
}
.cc-adventure__collage .cc-polaroid:nth-child(2) .cc-polaroid__img { aspect-ratio: 4/3; }
.cc-adventure__collage .cc-ribbon--adventure {
  position: absolute;
  top: -16px;
  left: 24px;
  transform: rotate(-4deg);
}
.cc-adventure__copy { padding-top: 32px; }
.cc-adventure__copy .cc-kicker {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  color: var(--cc-red);
  margin-bottom: 4px;
}
.cc-adventure__copy h2 {
  font-family: 'Fraunces', serif;
  font-size: 72px;
  font-weight: 400;
  line-height: .98;
  margin: 0 0 22px;
  letter-spacing: -0.025em;
}
.cc-adventure__copy h2 em { font-weight: 500; font-style: italic; }
.cc-adventure__copy p {
  font-size: 16px;
  line-height: 1.65;
  opacity: .82;
  margin-bottom: 36px;
  max-width: 480px;
}
.cc-adventure__copy .cc-btn { margin-bottom: 36px; }
.cc-services {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(42,38,34,.12);
}
.cc-services li {
  border-bottom: 1px solid rgba(42,38,34,.12);
}
.cc-services details {
  width: 100%;
}
.cc-services summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
}
.cc-services summary::-webkit-details-marker,
.cc-services summary::marker {
  display: none;
}
.cc-services__head {
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.cc-services__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--cc-red);
  opacity: .75;
}
.cc-services__name {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  transition: color .15s ease;
}
.cc-services summary:hover .cc-services__name {
  color: var(--cc-red);
}
.cc-services__toggle {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.cc-services__toggle::before,
.cc-services__toggle::after {
  content: '';
  position: absolute;
  background: var(--cc-red);
  border-radius: 1px;
  transition: transform .22s ease, opacity .22s ease;
}
.cc-services__toggle::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  margin-top: -1px;
}
.cc-services__toggle::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  margin-left: -1px;
}
.cc-services details[open] .cc-services__toggle::after {
  transform: rotate(90deg);
  opacity: 0;
}
.cc-services__body {
  padding: 0 0 24px 33px;
  display: grid;
  gap: 16px;
  animation: cc-services-fade .25s ease;
}
.cc-services__body p {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--cc-ink);
  opacity: .82;
  margin: 0;
  max-width: 480px;
}
.cc-services__body .cc-btn {
  justify-self: start;
}
@keyframes cc-services-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ───── 5 · Experience the World with Friends ───── */
.cc-trips {
  background: var(--cc-cream-warm);
  padding: 110px 64px;
  position: relative;
  border-top: 1px solid rgba(42,38,34,.07);
  border-bottom: 1px solid rgba(42,38,34,.07);
  overflow: hidden;
  isolation: isolate;
}
.cc-trips::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/photo-camino-credentials.jpg');
  background-size: cover;
  background-position: center;
  opacity: .12;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.cc-trips__inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.cc-trips__head { text-align: center; margin-bottom: 64px; }
.cc-trips__head .cc-kicker {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: var(--cc-red);
}
.cc-trips__head h2 {
  font-family: 'Fraunces', serif;
  font-size: 76px;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.03em;
  line-height: .95;
}
.cc-trips__head h2 em { font-weight: 500; font-style: italic; }
.cc-trips__head p {
  font-size: 15.5px;
  line-height: 1.6;
  opacity: .8;
  max-width: 620px;
  margin: 20px auto 0;
}
.cc-trips__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.cc-trip-card {
  position: relative;
  background: #fff;
  padding: 16px;
  padding-bottom: 26px;
  box-shadow: 0 22px 50px rgba(40,30,15,.16);
  display: flex;
  flex-direction: column;
}
.cc-trip-card:nth-child(1) { transform: rotate(-0.7deg); }
.cc-trip-card:nth-child(2) { transform: rotate(0deg); }
.cc-trip-card:nth-child(3) { transform: rotate(0.7deg); }
.cc-trip-card .cc-ribbon {
  position: absolute;
  top: -14px;
  left: 14px;
  z-index: 2;
}
.cc-trip-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d7cdb6;
  margin-bottom: 18px;
}
.cc-trip-card__img img { width: 100%; height: 100%; object-fit: cover; }
.cc-trip-card__body {
  padding: 0 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cc-trip-card__cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--cc-red);
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.cc-trip-card__title {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 6px;
  letter-spacing: -0.015em;
}
.cc-trip-card__sub {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--cc-ink);
  opacity: .55;
  margin-bottom: 14px;
}
.cc-trip-card__body p {
  font-size: 14px;
  line-height: 1.6;
  opacity: .8;
  margin: 0 0 22px;
}
.cc-trip-card .cc-btn {
  align-self: flex-start;
  margin-top: auto;
  font-size: 13px;
  padding: 12px 20px;
}
.cc-trips__viewall {
  text-align: center;
  margin-top: 56px;
}
.cc-trips__viewall a {
  color: var(--cc-ink);
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-style: italic;
  text-decoration: none;
  border-bottom: 1px solid rgba(42,38,34,.33);
  padding-bottom: 4px;
}

/* ───── 6 · Speaking ───── */
.cc-speaking {
  background: var(--cc-ink);
  color: var(--cc-cream);
  padding: 110px 64px;
  position: relative;
  overflow: hidden;
}
.cc-speaking__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cc-speaking__media { position: relative; }
.cc-speaking__media .cc-polaroid {
  width: 520px; transform: rotate(-3deg);
}
.cc-speaking__media .cc-polaroid__img { aspect-ratio: 16/10; }
.cc-speaking__media .cc-ribbon {
  position: absolute;
  top: -14px;
  right: 24px;
  transform: rotate(4deg);
}
.cc-speaking__copy .cc-kicker {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: var(--cc-red);
}
.cc-speaking__copy h2 {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 400;
  line-height: .98;
  margin: 4px 0 24px;
  letter-spacing: -0.025em;
  color: var(--cc-cream);
}
.cc-speaking__copy h2 em { font-weight: 500; font-style: italic; }
.cc-speaking__copy > p {
  font-size: 16px;
  line-height: 1.65;
  opacity: .85;
  margin-bottom: 28px;
  max-width: 480px;
}
.cc-topics { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.cc-topics span {
  padding: 8px 16px;
  border: 1px solid rgba(240,232,213,.2);
  font-size: 12.5px;
  background: rgba(255,255,255,.04);
  border-radius: 999px;
}
.cc-speaking__cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cc-speaking__location {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .15em;
  opacity: .6;
  line-height: 1.5;
}

/* ───── 7 · Real World Experience ───── */
.cc-real {
  position: relative;
  padding: 120px 64px;
  background: var(--cc-cream);
}
.cc-real__deco {
  position: absolute;
  top: 40px;
  left: -60px;
  width: 280px;
  opacity: .9;
  pointer-events: none;
}
.cc-real__inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
.cc-real__copy { padding-top: 28px; }
.cc-real__copy .cc-kicker {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  color: var(--cc-red);
}
.cc-real__copy h2 {
  font-family: 'Fraunces', serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
  margin: 4px 0 24px;
  letter-spacing: -0.02em;
}
.cc-real__copy h2 em { font-weight: 500; font-style: italic; }
.cc-real__copy p {
  font-size: 16px;
  line-height: 1.7;
  opacity: .82;
  margin-bottom: 16px;
}
.cc-real__copy p + p { margin-bottom: 32px; }
.cc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid rgba(42,38,34,.2);
  border-bottom: 1px solid rgba(42,38,34,.2);
  margin-bottom: 32px;
}
.cc-stat__num {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  color: var(--cc-red);
  font-style: italic;
}
.cc-stat__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .16em;
  opacity: .6;
  margin-top: 8px;
  text-transform: uppercase;
}
.cc-real__link {
  color: var(--cc-ink);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(42,38,34,.33);
  padding-bottom: 4px;
}
.cc-real__collage { position: relative; height: 620px; }
.cc-real__collage .cc-polaroid:nth-child(1) {
  position: absolute; top: 0; right: 0;
  width: 430px; transform: rotate(3deg);
}
.cc-real__collage .cc-polaroid:nth-child(1) .cc-polaroid__img { aspect-ratio: 16/11; }
.cc-real__collage .cc-polaroid:nth-child(2) {
  position: absolute; top: 360px; left: 0;
  width: 340px; transform: rotate(-5deg);
}
.cc-real__collage .cc-polaroid:nth-child(2) .cc-polaroid__img { aspect-ratio: 4/3; }
.cc-real__collage .cc-ribbon {
  position: absolute;
  top: -14px;
  left: 24px;
  transform: rotate(-4deg);
}

/* ───── 8 · Partner With Us ───── */
.cc-partners { background: var(--cc-cream); padding: 0 64px 100px; }
.cc-partners__inner { max-width: 1280px; margin: 0 auto; }
.cc-partners__feature {
  position: relative;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(40,30,15,.2);
}
.cc-partners__feature > img,
.cc-partners__feature > video {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.cc-partners__feature::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.55));
}
.cc-partners__tabs {
  position: absolute;
  top: 28px;
  left: 28px;
  display: flex;
  gap: 10px;
  z-index: 2;
}
.cc-partners__caption {
  position: absolute;
  bottom: 36px;
  left: 36px;
  right: 36px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  z-index: 2;
}
.cc-partners__caption .cc-kicker {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: #ffd9a8;
}
.cc-partners__caption h2 {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1;
}
.cc-partners__caption h2 em { font-weight: 500; font-style: italic; }
.cc-partners__caption .cc-btn { flex-shrink: 0; }
.cc-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
  padding: 48px 32px 0;
}
.cc-logos__item {
  display: flex;
  justify-content: center;
  filter: grayscale(.3);
  opacity: .85;
}
.cc-logos__item img { max-height: 56px; object-fit: contain; }

/* ───── 9 · Testimonials ───── */
.cc-testi {
  position: relative;
  padding: 120px 64px;
  background: var(--cc-cream);
  overflow: hidden;
}
.cc-testi__rock {
  position: absolute; bottom: -60px; right: -120px;
  width: 340px; opacity: .85; pointer-events: none;
}
.cc-testi__branch {
  position: absolute; top: 0; left: -60px;
  width: 340px; opacity: .9; pointer-events: none;
}
.cc-testi__inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: flex-start;
}
.cc-testi__copy { padding-top: 20px; }
.cc-testi__copy .cc-kicker {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  color: var(--cc-red);
}
.cc-testi__copy h2 {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 36px;
  letter-spacing: -0.025em;
}
.cc-testi__copy h2 em { font-weight: 500; font-style: italic; }
.cc-quote {
  margin: 0;
  padding: 0;
  position: relative;
  max-width: 480px;
}
.cc-quote__mark {
  position: absolute;
  left: -10px;
  top: -34px;
  font-size: 90px;
  color: var(--cc-red);
  opacity: .35;
  font-family: 'Fraunces', serif;
  line-height: 1;
  font-style: italic;
}
.cc-quote__body {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 24px;
  padding-top: 8px;
  font-style: italic;
}
.cc-quote__author {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  color: var(--cc-red);
}
.cc-testi__dots { display: flex; gap: 8px; margin-top: 36px; align-items: center; }
.cc-testi__dots span {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: rgba(42,38,34,.2);
  display: block;
}
.cc-testi__dots span.is-active {
  width: 24px;
  background: var(--cc-red);
}
.cc-testi__dots a {
  margin-left: 16px;
  font-size: 13px;
  color: var(--cc-ink);
  opacity: .6;
  text-decoration: none;
}
.cc-testi__media { position: relative; }
.cc-testi__media .cc-polaroid {
  width: 500px; transform: rotate(3deg);
}
.cc-testi__media .cc-polaroid__img { aspect-ratio: 4/3; }
.cc-testi__google {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 130px;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.15));
}

/* ───── 10 · Blog ───── */
.cc-blog {
  background: var(--cc-cream-warm);
  padding: 110px 64px;
  position: relative;
  border-top: 1px solid rgba(42,38,34,.07);
  overflow: hidden;
}
.cc-blog__inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}
.cc-blog__head {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 72px;
}
.cc-tiles { display: grid; gap: 18px; }
.cc-tile {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--cc-red);
  color: #fff;
  padding: 18px 24px;
  box-shadow: 0 14px 32px rgba(40,30,15,.18);
  position: relative;
  text-decoration: none;
  border: 2px solid var(--cc-red);
  outline: 1px dashed rgba(255,255,255,.55);
  outline-offset: -7px;
  max-width: 360px;
}
.cc-tile:nth-child(1) { transform: translateX(0) rotate(-0.4deg); }
.cc-tile:nth-child(2) { transform: translateX(28px) rotate(0deg); }
.cc-tile:nth-child(3) { transform: translateX(56px) rotate(0.4deg); }
.cc-tile__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--cc-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cc-tile__title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.05;
  margin-bottom: 3px;
}
.cc-tile__sub { font-size: 12px; opacity: .85; line-height: 1.4; }
.cc-blog__copy .cc-kicker {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: var(--cc-red);
}
.cc-blog__copy h2 {
  font-family: 'Fraunces', serif;
  font-size: 72px;
  font-weight: 400;
  line-height: .98;
  margin: 4px 0 22px;
  letter-spacing: -0.025em;
}
.cc-blog__copy h2 em { font-weight: 500; font-style: italic; }
.cc-blog__copy p {
  font-size: 16px;
  line-height: 1.65;
  opacity: .82;
  margin-bottom: 24px;
  max-width: 540px;
}
.cc-blog__copy a {
  color: var(--cc-ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(42,38,34,.4);
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cc-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.cc-posts--archive {
  gap: 40px 32px;
}
.cc-posts--archive .cc-post:nth-child(3n+1) { transform: rotate(-0.6deg); }
.cc-posts--archive .cc-post:nth-child(3n+2) { transform: rotate(0deg); }
.cc-posts--archive .cc-post:nth-child(3n+3) { transform: rotate(0.6deg); }
.cc-posts--archive .cc-post { transition: transform .25s ease, box-shadow .25s ease; }
.cc-posts--archive .cc-post:hover { transform: translateY(-3px) rotate(0deg); box-shadow: 0 28px 60px rgba(40,30,15,.22); }

/* Category chips on the blog archive */
.cc-blog-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.cc-blog-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(42,38,34,.18);
  border-radius: 999px;
  background: #fff;
  color: var(--cc-ink);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .02em;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.cc-blog-chip:hover { transform: translateY(-1px); border-color: var(--cc-red); color: var(--cc-red); }
.cc-blog-chip.is-active { background: var(--cc-ink); color: var(--cc-cream); border-color: var(--cc-ink); }
.cc-blog-chip__count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .15em;
  opacity: .65;
}

/* Pagination */
.cc-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 64px;
}
.cc-pagination__item .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(42,38,34,.18);
  border-radius: 999px;
  background: #fff;
  color: var(--cc-ink);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.cc-pagination__item .page-numbers:hover { border-color: var(--cc-red); color: var(--cc-red); }
.cc-pagination__item .page-numbers.current {
  background: var(--cc-red);
  color: #fff;
  border-color: var(--cc-red);
}
.cc-pagination__item .page-numbers.dots { border-color: transparent; }

@media (max-width: 980px) {
  .cc-posts--archive { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cc-posts--archive { grid-template-columns: 1fr; }
}
.cc-post {
  position: relative;
  background: #fff;
  padding: 16px;
  padding-bottom: 26px;
  box-shadow: 0 22px 50px rgba(40,30,15,.16);
  cursor: pointer;
  text-decoration: none;
  color: var(--cc-ink);
  display: block;
  transition: transform .25s ease, box-shadow .25s ease;
}
.cc-posts > .cc-post:nth-child(3n+1) { transform: rotate(-0.8deg); }
.cc-posts > .cc-post:nth-child(3n+2) { transform: rotate(0deg); }
.cc-posts > .cc-post:nth-child(3n+3) { transform: rotate(0.8deg); }
.cc-posts > .cc-post:hover { transform: translateY(-3px) rotate(0deg); box-shadow: 0 28px 60px rgba(40,30,15,.22); }
.cc-posts { row-gap: 48px; }
.cc-post .cc-ribbon {
  position: absolute;
  top: -14px;
  right: 14px;
  transform: rotate(6deg);
  z-index: 2;
}
.cc-post__img {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: #d7cdb6;
  margin-bottom: 18px;
}
.cc-post__img img { width: 100%; height: 100%; object-fit: cover; }
.cc-post__body { padding: 0 8px; }
.cc-post__meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--cc-red);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.cc-post__title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.cc-post__read {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cc-red);
  font-size: 13px;
  font-weight: 600;
}

/* ───── 11 · Big Wordmark (start of FOOTER.PHP) ───── */
.cc-wordmark {
  background: var(--cc-ink);
  padding: 90px 48px 60px;
  position: relative;
  overflow: hidden;
}
.cc-wordmark__inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.cc-wordmark__logo {
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,.4));
}
.cc-wordmark__stats {
  display: flex;
  gap: 36px;
  color: var(--cc-cream);
  opacity: .65;
  font-size: 11.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
  flex-wrap: wrap;
  justify-content: center;
}

/* ───── 12 · Footer columns ───── */
.cc-footer {
  background: var(--cc-ink);
  color: var(--cc-cream);
  padding: 0 0 32px;
  border-top: 1px solid rgba(240,232,213,.1);
}
.cc-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 64px 32px;
}
.cc-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.8fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}
.cc-footer p {
  font-size: 14px;
  line-height: 1.65;
  opacity: .8;
  margin: 0 0 24px;
  max-width: 380px;
}
.cc-footer__newsletter-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 6px;
  color: var(--cc-cream);
}
.cc-footer__newsletter-sub {
  font-size: 12.5px;
  line-height: 1.55;
  opacity: .65;
  margin-bottom: 16px;
  max-width: 380px;
}
.cc-newsletter {
  display: flex;
  background: transparent;
  border: 1px solid rgba(240,232,213,.2);
  padding: 4px;
  max-width: 380px;
}
.cc-newsletter input {
  flex: 1;
  padding: 12px 14px;
  background: transparent;
  border: none;
  color: var(--cc-cream);
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  outline: none;
}
.cc-newsletter input::placeholder { color: rgba(240,232,213,.45); }
.cc-newsletter button {
  padding: 0 22px;
  background: var(--cc-red);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .06em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cc-social { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.cc-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(240,232,213,.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--cc-cream);
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.cc-social a:hover {
  color: #fff;
  border-color: var(--cc-red);
  background: var(--cc-red);
}
.cc-social svg {
  width: 17px;
  height: 17px;
  display: block;
}
/* Social icons on light page backgrounds (e.g. contact page) need dark/brand
   strokes — the base .cc-social style is tuned for the dark footer. */
.site-main .cc-social a {
  color: var(--cc-ink);
  border-color: rgba(42,38,34,.28);
}
.site-main .cc-social a:hover {
  color: #fff;
  background: var(--cc-red);
  border-color: var(--cc-red);
}
.cc-footer__col-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--cc-orange);
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.cc-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.cc-footer__col li,
.cc-footer__col a {
  font-size: 13.5px;
  opacity: .85;
  color: inherit;
  text-decoration: none;
}
.cc-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.cc-footer__manifesto {
  font-size: 13.5px;
  line-height: 1.65;
  opacity: .8;
  margin: 0 0 18px;
  max-width: 320px;
}
.cc-footer__contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 13px;
  opacity: .85;
}
.cc-footer__contact a { color: var(--cc-cream); text-decoration: underline; text-underline-offset: 2px; }
.cc-footer__contact a:hover { color: var(--cc-orange); }
.cc-footer__legal {
  border-top: 1px solid rgba(240,232,213,.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 16px;
}
.cc-footer__legal > span { opacity: .55; }
.cc-footer__dbj {
  display: inline-flex;
  align-items: center;
  opacity: .75;
  transition: opacity .15s ease;
}
.cc-footer__dbj:hover { opacity: 1; }
.cc-footer__dbj img {
  display: block;
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* ─────────────────────────────────────────────
   Responsive — scale down at common breakpoints
   ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .cc-hero__content { padding: 0 40px 60px; }
  .cc-hero__title { font-size: 84px; }
  .cc-asseen__inner { grid-template-columns: 1fr; gap: 28px; }
  .cc-asseen__why { border: none; padding: 0; }
  .cc-adventure { padding: 80px 32px; }
  .cc-adventure__inner { grid-template-columns: 1fr; gap: 60px; }
  .cc-adventure__collage { height: auto; min-height: 540px; }
  .cc-trips { padding: 80px 32px; }
  .cc-trips__head h2 { font-size: 56px; }
  .cc-speaking { padding: 80px 32px; }
  .cc-speaking__inner { grid-template-columns: 1fr; gap: 60px; }
  .cc-speaking__media .cc-polaroid { width: 100%; max-width: 520px; }
  .cc-real { padding: 80px 32px; }
  .cc-real__inner { grid-template-columns: 1fr; gap: 60px; }
  .cc-real__collage { height: auto; min-height: 620px; }
  .cc-partners { padding: 0 32px 80px; }
  .cc-logos { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .cc-testi { padding: 80px 32px; }
  .cc-testi__inner { grid-template-columns: 1fr; gap: 60px; }
  .cc-testi__media .cc-polaroid { width: 100%; max-width: 500px; }
  .cc-blog { padding: 80px 32px; }
  .cc-blog__head { grid-template-columns: 1fr; gap: 40px; }
  .cc-blog__copy h2 { font-size: 56px; }
  .cc-footer__inner { padding: 60px 32px 32px; }
  .cc-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .cc-topbar { padding: 14px 18px; }
  .cc-hero { padding: 12px 12px 0; }
  .cc-hero__content { padding: 0 24px 36px; }
  .cc-hero__kicker { font-size: 26px; }
  .cc-hero__title { font-size: 48px; letter-spacing: -.02em; }
  .cc-hero__lede { font-size: 15px; margin: 18px 0; }
  .cc-hero__ctas .cc-btn { padding: 12px 18px; font-size: 13px; }
  .cc-trips__grid { grid-template-columns: 1fr; gap: 56px; }
  .cc-trip-card { transform: none !important; }
  .cc-trips__head h2 { font-size: 40px; }
  .cc-adventure__copy h2 { font-size: 48px; }
  .cc-speaking__copy h2 { font-size: 44px; }
  .cc-real__copy h2 { font-size: 42px; }
  .cc-partners__caption {
    flex-direction: column;
    align-items: flex-start;
    bottom: 20px; left: 20px; right: 20px;
  }
  .cc-partners__caption h2 { font-size: 36px; }
  .cc-logos { grid-template-columns: repeat(2, 1fr); }
  .cc-testi__copy h2 { font-size: 44px; }
  .cc-testi__media .cc-polaroid { width: 100%; }
  .cc-stats { grid-template-columns: repeat(2, 1fr); }
  .cc-posts { grid-template-columns: 1fr; gap: 48px; }
  .cc-post { transform: none !important; }
  .cc-tile { transform: none !important; }
  .cc-blog__copy h2 { font-size: 40px; }
  .cc-wordmark { padding: 60px 24px 40px; }
  .cc-footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .cc-footer__inner { padding: 48px 24px 24px; }
  .cc-footer__legal { flex-direction: column; align-items: flex-start; }
  .cc-adventure__collage .cc-polaroid:nth-child(1),
  .cc-adventure__collage .cc-polaroid:nth-child(2),
  .cc-real__collage .cc-polaroid:nth-child(1),
  .cc-real__collage .cc-polaroid:nth-child(2) {
    position: relative;
    top: auto; left: auto; right: auto;
    width: 100%;
    margin-bottom: 24px;
    transform: none;
  }
  .cc-adventure__collage,
  .cc-real__collage { min-height: 0; }
}

/* ───── Sound toggle button (replaces Contact in the top bar) ───── */
.cc-sound-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(42,38,34,.22);
  border-radius: 999px;
  background: var(--cc-cream);
  color: var(--cc-ink);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.cc-sound-btn:hover { transform: translateY(-1px); border-color: var(--cc-red); color: var(--cc-red); }
.cc-sound-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}
.cc-sound-btn__svg { width: 20px; height: 20px; }
.cc-sound-btn__svg--on { display: none; }
.cc-sound-btn[data-state="playing"] {
  background: var(--cc-red);
  color: #fff;
  border-color: var(--cc-red);
}
.cc-sound-btn[data-state="playing"] .cc-sound-btn__svg--off { display: none; }
.cc-sound-btn[data-state="playing"] .cc-sound-btn__svg--on { display: block; }

/* ───── Floating CTA bars (left + right) ───── */
.cc-floatbar {
  position: fixed;
  bottom: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cc-floatbar--left { left: 20px; align-items: flex-start; }
.cc-floatbar--right { right: 20px; align-items: flex-end; }
/* JS-driven initial state: bars start off-screen below, GSAP slides them up. */
.js-floatbar .cc-floatbar { opacity: 0; transform: translateY(120px); will-change: transform, opacity; }
.cc-floatbar__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid currentColor;
  box-shadow: 0 14px 32px rgba(20,15,10,.18);
  transition: transform .15s ease, background .2s ease, color .2s ease;
}
.cc-floatbar__btn:hover { transform: translateY(-1px); }
.cc-floatbar__btn--red {
  background: var(--cc-red);
  color: #fff;
  border-color: var(--cc-red);
}
.cc-floatbar__btn--red:hover { background: var(--cc-red-dark); border-color: var(--cc-red-dark); color: #fff; }
.cc-floatbar__btn--cream {
  background: var(--cc-cream);
  color: var(--cc-ink);
  border-color: rgba(42,38,34,.22);
}
.cc-floatbar__btn--cream:hover { border-color: var(--cc-red); color: var(--cc-red); }
.cc-floatbar__menu {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  cursor: pointer;
  border: 1px solid var(--cc-ink);
  background: var(--cc-ink);
  color: var(--cc-cream);
  box-shadow: 0 14px 32px rgba(20,15,10,.22);
  transition: transform .15s ease, background .2s ease, color .2s ease;
}
.cc-floatbar__menu:hover { transform: translateY(-1px); background: var(--cc-red); border-color: var(--cc-red); color: #fff; }
.cc-floatbar__menu-icon { display: inline-flex; }
@media (max-width: 720px) {
  .cc-floatbar--left { left: 12px; bottom: 12px; }
  .cc-floatbar--right { right: 12px; bottom: 12px; }
  .cc-floatbar { gap: 8px; }
  .cc-floatbar__btn { padding: 12px 16px; font-size: 13px; }
  .cc-floatbar__menu { padding: 12px 16px; font-size: 13px; }
  .cc-floatbar__menu-label { display: none; }
}

/* ───── Modal (Join Newsletter) ───── */
.cc-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.cc-modal.is-open { display: flex; }
.cc-modal__scrim {
  position: absolute;
  inset: 0;
  background: rgba(20,15,10,.55);
  backdrop-filter: blur(2px);
}
.cc-modal__dialog {
  position: relative;
  background: var(--cc-cream);
  color: var(--cc-ink);
  border-radius: 6px;
  max-width: 560px;
  width: 100%;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 40px 36px 32px;
  box-shadow: 0 30px 80px rgba(20,15,10,.35);
}
.cc-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  color: var(--cc-ink);
}
.cc-modal__close:hover { color: var(--cc-red); }
.cc-modal__kicker {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: var(--cc-red);
  font-style: italic;
  margin-bottom: 4px;
}
.cc-modal__title {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  font-style: italic;
  color: var(--cc-ink);
}
.cc-modal__title em { font-style: italic; font-weight: 400; }
.cc-modal__sub {
  font-size: 15px;
  line-height: 1.55;
  color: var(--cc-ink-soft);
  margin: 0 0 18px;
}
body.cc-modal-open { overflow: hidden; }
