/* =========================================================
   CLEAR CREEK CABINS
   Clean standalone stylesheet — no Elementor dependency
========================================================= */

:root {
  --forest: #18332d;
  --forest-light: #28483f;
  --cream: #f5f1e9;
  --gallery-bg: #eee8de;
  --accent: #b8865b;
  --white: #ffffff;
  --text: #26332f;
  --muted: #68736e;
  --border: rgba(24, 51, 45, 0.12);
  --container: 1280px;
  --section-space: 104px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}

body {
  margin: 0;
  background: var(--cream);
}

body.cc-lightbox-open {
  overflow: hidden;
}

#clear-creek-site,
#clear-creek-site * {
  box-sizing: border-box;
}

#clear-creek-site {
  width: 100%;
  min-height: 100vh;
  overflow: clip;
  background: var(--cream);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

#clear-creek-site img {
  display: block;
  max-width: 100%;
}

#clear-creek-site a {
  text-decoration: none;
}

#clear-creek-site button {
  font: inherit;
}

#clear-creek-site h1,
#clear-creek-site h2,
#clear-creek-site h3,
#clear-creek-site p {
  margin-top: 0;
}

#clear-creek-site h1,
#clear-creek-site h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

.cc-container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.cc-section {
  padding: var(--section-space) 0;
}

.cc-eyebrow {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.cc-title {
  margin-bottom: 24px;
  color: var(--forest);
  font-size: clamp(38px, 4.4vw, 64px);
}

.cc-text {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.cc-nav {
  position: fixed;
  top: 16px;
  left: 0;
  z-index: 999;
  width: 100%;
  transition: top .3s ease;
}

.cc-nav-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 16px 10px 22px;

  background: rgba(248, 245, 238, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;

  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);

  box-shadow: 0 10px 36px rgba(8, 27, 21, 0.10);

  transition:
    min-height .3s ease,
    background .3s ease,
    border-radius .3s ease,
    box-shadow .3s ease;
}

.cc-nav.cc-scrolled {
  top: 8px;
}

.cc-nav.cc-scrolled .cc-nav-inner {
  min-height: 70px;
  background: rgba(248, 245, 238, 0.94);
  border-color: rgba(24, 51, 45, 0.08);
  border-radius: 15px;
  box-shadow: 0 10px 36px rgba(8, 27, 21, 0.15);
}

.cc-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.cc-logo img {
  width: 228px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
  transition: width .3s ease, transform .3s ease;
}

.cc-logo:hover img {
  transform: translateY(-1px);
}

.cc-nav.cc-scrolled .cc-logo img {
  width: 205px;
}

.cc-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.cc-menu > a:not(.cc-nav-btn) {
  position: relative;
  padding: 10px 0;
  color: var(--forest);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .1px;
  transition: color .22s ease;
}

.cc-menu > a:not(.cc-nav-btn)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 10px;
  background: var(--accent);
  transform: translateX(-50%);
  transition: width .25s ease;
}

.cc-menu > a:not(.cc-nav-btn):hover {
  color: var(--accent);
}

.cc-menu > a:not(.cc-nav-btn):hover::after {
  width: 100%;
}

.cc-nav-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  background: var(--forest);
  color: var(--white) !important;
  box-shadow: 0 6px 17px rgba(24, 51, 45, .15);
  font-size: 13px;
  font-weight: 700;
  transition:
    transform .25s ease,
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.cc-nav-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(24, 51, 45, .20);
}

.cc-menu-toggle {
  display: none;
  width: 43px;
  height: 43px;
  padding: 0;
  border: 1px solid rgba(24, 51, 45, .13);
  border-radius: 12px;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
}

.cc-menu-toggle span {
  width: 19px;
  height: 2px;
  display: block;
  margin: 4px auto;
  border-radius: 5px;
  background: var(--forest);
  transition: transform .25s ease, opacity .25s ease;
}

.cc-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.cc-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.cc-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}


/* =========================================================
   HERO
========================================================= */

.cc-hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);

  background:
    linear-gradient(
      180deg,
      rgba(7, 20, 16, .16) 0%,
      rgba(7, 20, 16, .20) 48%,
      rgba(7, 20, 16, .80) 100%
    ),
    url("https://ahsanwebdesign.com/wp-content/uploads/2026/08/bg.png")
    center center / cover no-repeat;
}

.cc-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 190px 0 88px;
}

.cc-hero-tag {
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .95);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.cc-hero-tag::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

.cc-hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(52px, 7.2vw, 96px);
}

.cc-hero p {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .86);
  font-size: 19px;
}

.cc-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.cc-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform .25s ease,
    background .25s ease,
    border-color .25s ease;
}

.cc-btn-light {
  background: var(--white);
  color: var(--forest);
}

.cc-btn-light:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

.cc-btn-outline {
  border: 1px solid rgba(255, 255, 255, .65);
  color: var(--white);
}

.cc-btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .85);
  transform: translateY(-2px);
}


/* =========================================================
   STATS
========================================================= */

.cc-stats {
  background: var(--forest);
  color: var(--white);
}

.cc-stats-grid {
  min-height: 136px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.cc-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 29px 32px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.cc-stat:last-child {
  border-right: 0;
}

.cc-stat strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.2;
}

.cc-stat span {
  margin-top: 3px;
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
}


/* =========================================================
   ABOUT
========================================================= */

.cc-about {
  background: var(--cream);
}

.cc-about-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(55px, 6vw, 88px);
  align-items: center;
}

.cc-about-image {
  position: relative;
  min-height: 620px;
}

.cc-about-main {
  width: 87%;
  height: 570px;
  object-fit: cover;
  border-radius: 4px;
}

.cc-about-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 250px;
  object-fit: cover;
  border: 9px solid var(--cream);
  border-radius: 2px;
}

.cc-about-copy p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 16px;
}

.cc-small-highlight {
  margin-top: 32px;
  padding-left: 22px;
  border-left: 2px solid var(--accent);
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.45;
}


/* =========================================================
   STAYS
========================================================= */

.cc-stays {
  background: var(--white);
}

.cc-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 52px;
}

.cc-heading-row .cc-title {
  max-width: 600px;
  margin-bottom: 0;
}

.cc-stay-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.cc-stay-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 6px;
  background: #182a25;
}

.cc-stay-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s ease;
}

.cc-stay-card:hover > img {
  transform: scale(1.045);
}

.cc-stay-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, .02) 27%,
    rgba(9, 21, 17, .84) 100%
  );
}

.cc-stay-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 42px;
  color: var(--white);
}

.cc-stay-content h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 39px;
  font-weight: 400;
  line-height: 1.15;
}

.cc-stay-content p {
  max-width: 470px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .80);
}

.cc-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cc-feature {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  color: var(--white);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: .4px;
  text-transform: uppercase;
}


/* =========================================================
   AMENITIES
========================================================= */

.cc-amenities {
  background: var(--cream);
}

.cc-amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 52px;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.cc-amenity {
  min-height: 205px;
  padding: 30px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cc-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.cc-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.cc-amenity h3 {
  margin-bottom: 7px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.cc-amenity p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}


/* =========================================================
   EXPERIENCE
========================================================= */

.cc-experience {
  min-height: 680px;
  display: flex;
  align-items: center;

  background:
    linear-gradient(
      90deg,
      rgba(12, 33, 27, .86) 0%,
      rgba(12, 33, 27, .58) 36%,
      rgba(12, 33, 27, .12) 74%
    ),
    url("https://ahsanwebdesign.com/wp-content/uploads/2026/08/ChatGPT-Image-Aug-22-2026-12_16_27-AM.png")
    center center / cover no-repeat;
}

.cc-experience-box {
  max-width: 610px;
  color: var(--white);
}

.cc-experience-box .cc-eyebrow {
  color: #e3c29e;
}

.cc-experience-box h2 {
  margin-bottom: 25px;
  color: var(--white);
  font-size: clamp(42px, 5.5vw, 72px);
}

.cc-experience-box p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .80);
  font-size: 17px;
}


/* =========================================================
   GALLERY
========================================================= */

.cc-gallery {
  background: var(--gallery-bg);
}

.cc-gallery-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.cc-gallery-heading .cc-title {
  margin-bottom: 18px;
}

.cc-gallery-heading .cc-text {
  margin-inline: auto;
}

.cc-gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  grid-template-rows: 315px 315px;
  gap: 14px;
}

.cc-gallery-item {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 4px;
  background: #d9d2c8;
  cursor: zoom-in;
}

.cc-gallery-item-large {
  grid-row: 1 / 3;
}

.cc-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease, filter .35s ease;
}

.cc-gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 18px;
  background: linear-gradient(
    180deg,
    transparent 48%,
    rgba(9, 21, 17, .55) 100%
  );
  opacity: 0;
  transition: opacity .3s ease;
}

.cc-gallery-overlay span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .40);
  border-radius: 999px;
  background: rgba(16, 37, 31, .30);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .8px;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.cc-gallery-item:hover img {
  transform: scale(1.045);
  filter: brightness(.92);
}

.cc-gallery-item:hover .cc-gallery-overlay,
.cc-gallery-item:focus-visible .cc-gallery-overlay {
  opacity: 1;
}

.cc-gallery-item:focus-visible {
  outline: 3px solid rgba(184, 134, 91, .50);
  outline-offset: 3px;
}


/* =========================================================
   LIGHTBOX
========================================================= */

.cc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 82px;

  background: rgba(8, 17, 14, .94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity .25s ease, visibility .25s ease;
}

.cc-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cc-lightbox-stage {
  position: relative;
  width: min(1280px, 100%);
  max-height: calc(100vh - 68px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cc-lightbox-image {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .40);
}

.cc-lightbox-caption {
  margin-top: 14px;
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
  text-align: center;
}

.cc-lightbox-count {
  margin-top: 4px;
  color: rgba(255, 255, 255, .48);
  font-size: 12px;
}

.cc-lightbox-close,
.cc-lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  cursor: pointer;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: background .22s ease, transform .22s ease;
}

.cc-lightbox-close:hover,
.cc-lightbox-nav:hover {
  background: rgba(255, 255, 255, .16);
}

.cc-lightbox-close {
  top: 24px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}

.cc-lightbox-nav {
  top: 50%;
  width: 52px;
  height: 66px;
  border-radius: 14px;
  font-size: 38px;
  line-height: 1;
  transform: translateY(-50%);
}

.cc-lightbox-prev {
  left: 24px;
}

.cc-lightbox-next {
  right: 24px;
}

.cc-lightbox-prev:hover {
  transform: translateY(-50%) translateX(-2px);
}

.cc-lightbox-next:hover {
  transform: translateY(-50%) translateX(2px);
}


/* =========================================================
   LOCATION
========================================================= */

.cc-location {
  background: var(--white);
}

.cc-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(55px, 6vw, 84px);
  align-items: center;
}

.cc-location-image {
  overflow: hidden;
  border-radius: 4px;
}

.cc-location-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  transition: transform .7s ease;
}

.cc-location-image:hover img {
  transform: scale(1.025);
}

.cc-location-list {
  margin-top: 32px;
}

.cc-location-row {
  min-height: 57px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  color: var(--forest);
}

.cc-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--accent);
}


/* =========================================================
   CONTACT
========================================================= */

.cc-contact {
  padding: 108px 0;
  background: var(--forest);
  color: var(--white);
}

.cc-contact-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 70px;
  align-items: end;
}

.cc-contact .cc-eyebrow {
  color: #d9b58f;
}

.cc-contact h2 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(46px, 5.6vw, 76px);
}

.cc-contact p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .68);
}

.cc-contact-buttons {
  margin-top: 32px;
}

.cc-contact-info {
  padding-left: 40px;
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.cc-contact-item {
  margin-bottom: 26px;
}

.cc-contact-item:last-child {
  margin-bottom: 0;
}

.cc-contact-item span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, .46);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.cc-contact-item a {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.4;
  overflow-wrap: anywhere;
  transition: color .2s ease;
}

.cc-contact-item a:hover {
  color: #e3c29e;
}


/* =========================================================
   FOOTER
========================================================= */

.cc-footer {
  padding: 30px 0;
  background: #10251f;
  color: rgba(255, 255, 255, .50);
}

.cc-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1050px) {

  .cc-menu {
    gap: 19px;
  }

  .cc-menu > a:not(.cc-nav-btn) {
    font-size: 13px;
  }

  .cc-logo img {
    width: 195px;
  }

  .cc-amenities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cc-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 390px 255px 255px;
  }

  .cc-gallery-item-large {
    grid-column: 1 / 3;
    grid-row: auto;
  }
}


@media (max-width: 900px) {

  :root {
    --section-space: 78px;
  }

  html {
    scroll-padding-top: 88px;
  }

  .cc-menu-toggle {
    display: block;
  }

  .cc-menu {
    position: absolute;
    top: calc(100% + 9px);
    left: 24px;
    right: 24px;

    display: grid;
    gap: 0;
    padding: 11px;

    background: rgba(248, 245, 238, .98);
    border: 1px solid rgba(24, 51, 45, .09);
    border-radius: 15px;
    box-shadow: 0 16px 40px rgba(8, 27, 21, .16);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;

    transition:
      opacity .23s ease,
      visibility .23s ease,
      transform .23s ease;
  }

  .cc-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .cc-menu > a:not(.cc-nav-btn) {
    display: block;
    padding: 14px 13px;
    border-radius: 9px;
    color: var(--forest);
    font-size: 14px;
  }

  .cc-menu > a:not(.cc-nav-btn)::after {
    display: none;
  }

  .cc-menu > a:not(.cc-nav-btn):hover {
    background: rgba(24, 51, 45, .05);
  }

  .cc-menu .cc-nav-btn {
    width: 100%;
    margin-top: 7px;
  }

  .cc-about-grid,
  .cc-location-grid,
  .cc-contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cc-contact-info {
    padding: 34px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .18);
    border-left: 0;
  }

  .cc-stay-grid {
    grid-template-columns: 1fr;
  }

  .cc-lightbox {
    padding: 30px 62px;
  }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 640px) {

  :root {
    --section-space: 64px;
  }

  .cc-container {
    width: min(100% - 30px, var(--container));
  }

  .cc-nav {
    top: 9px;
  }

  .cc-nav.cc-scrolled {
    top: 7px;
  }

  .cc-nav-inner {
    min-height: 66px;
    padding: 8px 10px 8px 14px;
    border-radius: 14px;
  }

  .cc-nav.cc-scrolled .cc-nav-inner {
    min-height: 62px;
  }

  .cc-logo img,
  .cc-nav.cc-scrolled .cc-logo img {
    width: 158px;
    max-height: 46px;
  }

  .cc-menu {
    left: 15px;
    right: 15px;
  }

  .cc-hero {
    min-height: 88svh;
  }

  .cc-hero-content {
    padding: 155px 0 56px;
  }

  .cc-hero h1 {
    font-size: clamp(46px, 13vw, 62px);
  }

  .cc-hero p {
    font-size: 16px;
  }

  .cc-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cc-btn {
    width: 100%;
  }

  .cc-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cc-stat {
    min-height: 112px;
    padding: 21px 17px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .cc-stat:nth-child(2) {
    border-right: 0;
  }

  .cc-stat:nth-child(3),
  .cc-stat:nth-child(4) {
    border-bottom: 0;
  }

  .cc-stat strong {
    font-size: 25px;
  }

  .cc-about-image {
    min-height: 430px;
  }

  .cc-about-main {
    width: 90%;
    height: 400px;
  }

  .cc-about-small {
    width: 51%;
    height: 175px;
    border-width: 7px;
  }

  .cc-heading-row {
    display: block;
    margin-bottom: 34px;
  }

  .cc-heading-row .cc-text {
    margin-top: 22px;
  }

  .cc-stay-card {
    min-height: 520px;
  }

  .cc-stay-content {
    padding: 28px 23px;
  }

  .cc-stay-content h3 {
    font-size: 32px;
  }

  .cc-amenities-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .cc-amenity {
    min-height: 0;
    padding: 26px;
  }

  .cc-experience {
    min-height: 590px;
    background-position: 62% center;
  }

  .cc-gallery-heading {
    margin-bottom: 34px;
  }

  .cc-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 10px;
  }

  .cc-gallery-item,
  .cc-gallery-item-large {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .cc-gallery-overlay {
    opacity: 1;
    padding: 12px;
    background: linear-gradient(
      180deg,
      transparent 62%,
      rgba(9, 21, 17, .46) 100%
    );
  }

  .cc-gallery-overlay span {
    font-size: 10px;
  }

  .cc-location-image img {
    height: 420px;
  }

  .cc-contact {
    padding: 75px 0;
  }

  .cc-contact h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .cc-footer-inner {
    flex-direction: column;
    gap: 8px;
  }

  .cc-lightbox {
    padding: 68px 14px 42px;
  }

  .cc-lightbox-close {
    top: 13px;
    right: 13px;
    width: 42px;
    height: 42px;
  }

  .cc-lightbox-nav {
    top: auto;
    bottom: 14px;
    width: 48px;
    height: 44px;
    border-radius: 12px;
    transform: none;
  }

  .cc-lightbox-prev {
    left: calc(50% - 54px);
  }

  .cc-lightbox-next {
    right: calc(50% - 54px);
  }

  .cc-lightbox-prev:hover,
  .cc-lightbox-next:hover {
    transform: none;
  }

  .cc-lightbox-image {
    max-height: calc(100vh - 160px);
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  #clear-creek-site *,
  #clear-creek-site *::before,
  #clear-creek-site *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
