/* =============================================================================
   site.css
   - Minor visual refinements only (no layout changes).
   - Introduces a warm secondary tint (#fff8ec) used as the site "tint" and for
     subtle hover highlights on light sections.
   ========================================================================== */

:root{
  /* Brand greens */
  --cc-green-900: #063428;
  --cc-green-800: #0a4a3a;

  /* Secondary (warm) */
  --cc-cream: #fff8ec;

  /* Used across split backgrounds and directories */
  --cc-tint: var(--cc-cream);

  /* Neutrals */
  --cc-white: #ffffff;
  --cc-white-80: rgba(255,255,255,0.80);
  --cc-white-60: rgba(255,255,255,0.60);
  --cc-white-20: rgba(255,255,255,0.20);
}

/* =============================================================================
   HOME NAVBAR OVER HERO
   ========================================================================== */
.cc-navbar{
  position: relative;
  z-index: 50;
}

.is-home .cc-navbar,
.is-projects .cc-navbar,
.is-sales .cc-navbar,
.is-offplan .cc-navbar,
.is-contact .cc-navbar,
.is-policy .cc-navbar,
.is-404 .cc-navbar{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  background: transparent !important;
  border-bottom-color: rgba(255,255,255,0.12) !important;
}

/* White nav links over green */
.is-home .cc-navbar .navbar-brand,
.is-projects .cc-navbar .navbar-brand,
.is-sales .cc-navbar .navbar-brand,
.is-offplan .cc-navbar .navbar-brand,
.is-contact .cc-navbar .navbar-brand,
.is-policy .cc-navbar .navbar-brand,
.is-404 .cc-navbar .navbar-brand,
.is-home .cc-navbar .nav-link,
.is-projects .cc-navbar .nav-link,
.is-sales .cc-navbar .nav-link,
.is-offplan .cc-navbar .nav-link,
.is-contact .cc-navbar .nav-link,
.is-policy .cc-navbar .nav-link,
.is-404 .cc-navbar .nav-link{
  color: rgba(255,255,255,0.92) !important;
}

.is-home .cc-navbar .nav-link:hover,
.is-projects .cc-navbar .nav-link:hover,
.is-sales .cc-navbar .nav-link:hover,
.is-offplan .cc-navbar .nav-link:hover,
.is-contact .cc-navbar .nav-link:hover,
.is-policy .cc-navbar .nav-link:hover,
.is-404 .cc-navbar .nav-link:hover{
  color: #ffffff !important;
}

/* Keep brand + links on one line */
.cc-navbar .container{
  flex-wrap: nowrap;
}

/* Tighten link padding on small screens */
@media (max-width: 575.98px){
  .cc-navbar .nav-link{
    padding-left: .5rem;
    padding-right: .5rem;
  }
}

/* =============================================================================
   FULL SCREEN HERO
   ========================================================================== */
.cc-hero{
  position: relative;
  overflow: hidden;

  min-height: 100vh;
  min-height: 100svh;

  color: #ffffff;

  background:
    radial-gradient(900px circle at 15% 20%, rgba(255,255,255,0.08), transparent 55%),
    radial-gradient(700px circle at 85% 65%, rgba(255,255,255,0.06), transparent 52%),
    linear-gradient(135deg, var(--cc-green-900), var(--cc-green-800));

  display: flex;
  align-items: center;

  /* space so content does not sit under overlay nav */
  padding: clamp(6rem, 10vh, 8rem) 0 4rem 0;
}

.cc-hero::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.15));
}

.cc-hero-content{
  position: relative;
  max-width: 40rem;
  padding-left: 1.25rem;
}

.cc-hero-content::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  height: 72%;
  width: 1px;
  background: rgba(255,255,255,0.22);
}

.cc-hero-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.cc-eyebrow-text{
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--cc-white-80);
}

.cc-rule{
  width: 44px;
  height: 1px;
  border-radius: 999px;
  background: rgba(8,60,47,0.55);
  flex: 0 0 auto;
}

.cc-rule-light{
  background: rgba(255,255,255,0.60);
}

.cc-hero-title{
  margin: 0 0 1.1rem 0;
  letter-spacing: -0.02em;
  line-height: 1.04;
  font-weight: 650;
  font-size: clamp(2.1rem, 3.7vw, 3.4rem);
}

.cc-hero-sub{
  margin: 0 0 1.8rem 0;
  color: var(--cc-white-80);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 34rem;
}

/* Buttons */
.cc-btn-primary{
  background: #ffffff;
  border: 1px solid #ffffff;
  color: var(--cc-green-900);
  border-radius: 12px;
  padding: 0.95rem 1.15rem;
  font-weight: 600;
}

.cc-btn-primary:hover{
  background: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.92);
  color: var(--cc-green-900);
}

.cc-btn-outline{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.38);
  color: #ffffff;
  border-radius: 12px;
  padding: 0.95rem 1.15rem;
  font-weight: 600;
}

.cc-btn-outline:hover{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.55);
  color: #ffffff;
}

.cc-btn-icon{
  display: inline-flex;
  margin-left: 0.6rem;
  transition: transform 200ms ease;
}

.cc-btn-primary:hover .cc-btn-icon{
  transform: translateX(4px);
}

/* Services line */
.cc-hero-services{
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
}

.cc-sep{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  display: inline-block;
}

/* Desktop media panel */
.cc-hero-media{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: clamp(420px, 62vh, 640px);

  border: 1px solid rgba(255,255,255,0.16);

  background:
    radial-gradient(800px circle at 25% 20%, rgba(255,255,255,0.10), transparent 58%),
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

.cc-hero-media::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/hero-home.png");
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.cc-hero-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.35));
}

.cc-hero-media-caption{
  position: absolute;
  padding-left: 1.5rem;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1;
  color: rgba(255,255,255,0.90);
  font-size: 0.95rem;
}

/* Smooth scroll (disable for reduced motion) */
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
}

/* Hero scroll indicator */
.cc-hero-scroll{
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;

  text-decoration: none;
  color: rgba(255,255,255,0.78);
}

.cc-hero-scroll:hover{
  color: #ffffff;
}

.cc-scroll-label{
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.cc-scroll-mouse{
  width: 26px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 18px;
  position: relative;
}

.cc-scroll-dot{
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  animation: ccScrollDot 1.6s infinite;
}

@keyframes ccScrollDot{
  0%   { opacity: 0; transform: translate(-50%, -3px); }
  18%  { opacity: 1; transform: translate(-50%, 0); }
  70%  { opacity: 1; transform: translate(-50%, 16px); }
  100% { opacity: 0; transform: translate(-50%, 18px); }
}

@media (prefers-reduced-motion: reduce){
  .cc-scroll-dot{ animation: none; }
}

/* Reveal animations */
[data-reveal]{ will-change: transform, opacity; }

[data-reveal="up"]{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal="fade"]{
  opacity: 0;
  transition: opacity 900ms ease;
}

[data-reveal="rule"]{
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 700ms ease;
}

.is-revealed[data-reveal="up"]{ opacity: 1; transform: none; }
.is-revealed[data-reveal="fade"]{ opacity: 1; }
.is-revealed[data-reveal="rule"]{ transform: scaleX(1); }

/* Stagger */
[data-delay="0"]{ transition-delay: 0ms; }
[data-delay="1"]{ transition-delay: 90ms; }
[data-delay="2"]{ transition-delay: 180ms; }
[data-delay="3"]{ transition-delay: 270ms; }
[data-delay="4"]{ transition-delay: 360ms; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  [data-reveal="up"],
  [data-reveal="fade"],
  [data-reveal="rule"]{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =============================================================================
   SERVICES SECTION
   ========================================================================== */
.cc-services-split{
  position: relative;
  background: #ffffff;
  min-height: 100vh;
  min-height: 100svh;

  display: flex;
  align-items: center;

  padding: clamp(3.5rem, 7vh, 5.5rem) 0;
}

@media (min-width: 992px){
  .cc-services-split{
    background: linear-gradient(
      90deg,
      #ffffff 0%,
      #ffffff 50%,
      var(--cc-tint) 50%,
      var(--cc-tint) 100%
    );
  }

  .cc-services-split::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    transform: translateX(-0.5px);
    background: rgba(6,52,40,0.10);
    pointer-events: none;
  }
}

#home-services{ scroll-margin-top: 90px; }

.cc-services-copy{
  position: relative;
  padding-left: 1.25rem;
}

.cc-services-copy::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  height: 72%;
  width: 1px;
  background: rgba(6,52,40,0.18);
}

.cc-kicker-green{
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  margin: 0 0 0.75rem 0;
  color: rgba(6,52,40,0.70);
}

.cc-h2-green{
  margin: 0;
  color: #063428;
  letter-spacing: -0.02em;
  line-height: 1.12;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
}

.cc-logo-ornament{
  position: relative;
  height: 12px;
  margin: 1rem 0 1.25rem 0;

  background:
    radial-gradient(circle, rgba(6,52,40,0.35) 0 3px, transparent 4px);
  background-repeat: no-repeat;
  background-position: center;
}

.cc-logo-ornament::before,
.cc-logo-ornament::after{
  content: "";
  position: absolute;
  top: 50%;
  width: 46%;
  height: 1px;
  background: rgba(6,52,40,0.18);
}

.cc-logo-ornament::before{ left: 0; }
.cc-logo-ornament::after{ right: 0; }

.cc-p-green{
  margin: 0;
  color: rgba(6,52,40,0.72);
  line-height: 1.7;
  font-size: 1.02rem;
  max-width: 34rem;
}

.cc-service-list{
  margin-top: 1.4rem;
  border-top: 1px solid rgba(6,52,40,0.14);
}

.cc-service-row{
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 1.25rem;
  row-gap: 0.25rem;

  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(6,52,40,0.14);

  text-decoration: none;
  color: #063428;

  transition: background 200ms ease;
}

/* Secondary tint hover on light background */
.cc-service-row:hover{
  background: rgba(255,248,236,0.65);
}

.cc-service-row::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: 0;
  background: rgba(6,52,40,0.70);
  transition: width 220ms ease;
}

.cc-service-row:hover::before{
  width: 56px;
}

.cc-service-title{
  grid-column: 1;
  grid-row: 1;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.cc-service-sub{
  grid-column: 1;
  grid-row: 2;
  color: rgba(6,52,40,0.70);
  line-height: 1.6;
}

.cc-service-arrow{
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: rgba(6,52,40,0.55);
  transition: transform 200ms ease, color 200ms ease;
}

.cc-service-row:hover .cc-service-arrow{
  color: rgba(6,52,40,0.85);
  transform: translateX(4px);
}

.cc-service-row.is-active .cc-service-arrow{
  color: rgba(6,52,40,0.85);
}

.cc-services-footnote{
  margin: 1.2rem 0 0 0;
  color: rgba(6,52,40,0.65);
  font-size: 0.95rem;
}

/* Collage */
.cc-collage{
  position: relative;
  height: clamp(420px, 62vh, 640px);

  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  gap: 14px;
}

.cc-collage-tile{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(6,52,40,0.16);

  background-size: cover;
  background-position: center;

  opacity: 0.55;
  filter: saturate(0.92);

  transition: transform 320ms ease, opacity 320ms ease, filter 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.cc-collage-tile::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,52,40,0.15), rgba(6,52,40,0.35));
}

.cc-collage-tile::after{
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 52px;
  height: 1px;
  background: rgba(255,255,255,0.55);
  opacity: 1;
}

.cc-collage-tile.is-active{
  opacity: 1;
  filter: saturate(1.02);
  transform: translateY(-4px);
  border-color: rgba(6,52,40,0.30);
  box-shadow: 0 18px 40px rgba(2,6,23,0.12);
}

/* Tile positions (desktop) */
.cc-tile-a{ grid-column: 1 / 8;  grid-row: 1 / 8;  z-index: 2; }
.cc-tile-b{ grid-column: 7 / 13; grid-row: 2 / 7;  z-index: 3; }
.cc-tile-c{ grid-column: 2 / 9;  grid-row: 8 / 13; z-index: 3; }
.cc-tile-d{ grid-column: 9 / 13; grid-row: 6 / 13; z-index: 2; }

/* Optional images */
.cc-tile-a{ background-image: linear-gradient(135deg, rgba(6,52,40,0.10), rgba(6,52,40,0.15)), url("../img/collage-management.jpg"); }
.cc-tile-b{ background-image: linear-gradient(135deg, rgba(6,52,40,0.10), rgba(6,52,40,0.15)), url("../img/collage-advertising.jpg"); }
.cc-tile-c{ background-image: linear-gradient(135deg, rgba(6,52,40,0.10), rgba(6,52,40,0.15)), url("../img/lease.jpg"); }
.cc-tile-d{ background-image: linear-gradient(135deg, rgba(6,52,40,0.10), rgba(6,52,40,0.15)), url("../img/collage-screening.jpg"); }

.cc-collage-lines{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cc-collage-lines::before{
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: rgba(6,52,40,0.12);
}

.cc-collage-lines::after{
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 84px;
  height: 1px;
  background: rgba(6,52,40,0.12);
}

@media (max-width: 991.98px){
  .cc-services-split{ padding: 3.5rem 0; }

  .cc-collage{
    height: 380px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
  }

  .cc-tile-a{ grid-column: 1 / 2; grid-row: 1 / 2; }
  .cc-tile-b{ grid-column: 2 / 3; grid-row: 1 / 2; }
  .cc-tile-c{ grid-column: 1 / 2; grid-row: 2 / 3; }
  .cc-tile-d{ grid-column: 2 / 3; grid-row: 2 / 3; }

  .cc-collage-lines{ display: none; }
}

/* =============================================================================
   PROCESS SECTION
   ========================================================================== */
.cc-process{
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(3.5rem, 7vh, 5.5rem) 0;
  background: #ffffff;
}

#home-process{ scroll-margin-top: 90px; }

@media (min-width: 992px){
  .cc-process{
    display: flex;
    align-items: center;
    background: linear-gradient(
      90deg,
      var(--cc-tint) 0%,
      var(--cc-tint) 50%,
      #ffffff 50%,
      #ffffff 100%
    );
  }

  .cc-process::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    transform: translateX(-0.5px);
    background: rgba(6,52,40,0.10);
    pointer-events: none;
  }
}

.cc-section-head-right{
  position: relative;
  padding-right: 1.25rem;
}

.cc-section-head-right::after{
  content: "";
  position: absolute;
  right: 0;
  top: 0.35rem;
  height: 72%;
  width: 1px;
  background: rgba(6,52,40,0.18);
}

.cc-process-steps{
  margin-top: 1.25rem;
  position: relative;
  padding-left: 1.25rem;
}

.cc-process-steps::before{
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(6,52,40,0.18);
}

.cc-step{
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;

  padding: 0.95rem 0;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;

  color: #063428;
  border-bottom: 1px solid rgba(6,52,40,0.12);

  transition: background 200ms ease;
}

/* Secondary tint hover on light background */
.cc-step:hover{
  background: rgba(255,248,236,0.65);
}

.cc-step:last-child{ border-bottom: 0; }

.cc-step-dot{
  margin-top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(6,52,40,0.35);
  background: #ffffff;
  flex: 0 0 auto;

  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.cc-step.is-active .cc-step-dot{
  background: rgba(6,52,40,0.90);
  border-color: rgba(6,52,40,0.90);
  transform: scale(1.05);
}

.cc-step-content{ display: block; }

.cc-step-name{
  display: block;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.cc-step-meta{
  display: block;
  margin-top: 0.25rem;
  color: rgba(6,52,40,0.65);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cc-process-panel{
  position: relative;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(6,52,40,0.16);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(2,6,23,0.08);
}

.cc-process-panel-inner{
  position: relative;
  z-index: 1;
  padding: 2rem 2rem 1.75rem 2rem;
}

@media (max-width: 575.98px){
  .cc-process-panel-inner{ padding: 1.5rem; }
}

.cc-process-progress{
  height: 2px;
  background: rgba(6,52,40,0.10);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.cc-process-progress-bar{
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(6,52,40,0.55);
  transform: scaleX(0.2);
  transform-origin: left;
  transition: transform 360ms ease;
}

.cc-process-panel-kicker{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  color: rgba(6,52,40,0.70);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

.cc-process-panel-title{
  margin: 0.6rem 0 0.9rem 0;
  color: #063428;
  letter-spacing: -0.02em;
  font-size: clamp(1.35rem, 1.7vw, 1.65rem);
  line-height: 1.2;
}

.cc-process-panel-text{
  margin: 0;
  color: rgba(6,52,40,0.72);
  line-height: 1.7;
  font-size: 1.02rem;
  max-width: 34rem;
}

.cc-inline-link{
  margin-top: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: rgba(6,52,40,0.85);
  font-weight: 650;
}

.cc-inline-link:hover{ color: rgba(6,52,40,0.95); }

.cc-inline-link-icon{
  display: inline-flex;
  transition: transform 200ms ease;
}

.cc-inline-link:hover .cc-inline-link-icon{
  transform: translateX(4px);
}

.cc-process-panel-lines{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.cc-process-panel-lines::before{
  content: "";
  position: absolute;
  right: 14px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: rgba(6,52,40,0.10);
}

.cc-process-panel-lines::after{
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 84px;
  height: 1px;
  background: rgba(6,52,40,0.10);
}

/* =============================================================================
   FEATURED SECTION
   ========================================================================== */
.cc-feature{
  position: relative;
  overflow: hidden;

  min-height: 100vh;
  min-height: 100svh;

  display: flex;
  align-items: center;

  padding: clamp(3.5rem, 7vh, 5.5rem) 0;

  color: #ffffff;

  background: linear-gradient(135deg, var(--cc-green-900), var(--cc-green-800));
}

.cc-feature::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background-image:
    linear-gradient(180deg, rgba(6,52,40,0.15) 0%, rgba(6,52,40,0.55) 100%),
    url("../img/featured-project.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transform: scale(1.03);
}

.cc-feature::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;

  background:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.10) 0,
      rgba(255,255,255,0.10) 1px,
      transparent 1px,
      transparent 92px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.08) 0,
      rgba(255,255,255,0.08) 1px,
      transparent 1px,
      transparent 140px
    );
}

.cc-feature .container{
  position: relative;
  z-index: 2;
}

.cc-feature-panel{
  position: relative;
  overflow: hidden;

  border-radius: 18px;
  padding: 2rem 2rem 1.8rem 2rem;

  background:
    radial-gradient(900px circle at 20% 20%, rgba(255,255,255,0.08), transparent 55%),
    linear-gradient(135deg, var(--cc-green-900), var(--cc-green-800));

  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 26px 70px rgba(2,6,23,0.35);
}

@media (max-width: 575.98px){
  .cc-feature-panel{ padding: 1.5rem; }
}

.cc-feature-panel-lines{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cc-feature-panel-lines::before{
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: rgba(255,255,255,0.10);
}

.cc-feature-panel-lines::after{
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 92px;
  height: 1px;
  background: rgba(255,255,255,0.10);
}

.cc-feature-kicker{
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;

  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.80);
}

.cc-feature-title{
  margin: 0 0 0.6rem 0;
  letter-spacing: -0.02em;
  line-height: 1.06;
  font-weight: 650;
  font-size: clamp(2rem, 3.1vw, 2.9rem);
}

.cc-feature-meta{
  margin: 0;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.cc-logo-ornament-light{
  position: relative;
  height: 12px;
  margin: 1rem 0 1.25rem 0;

  background:
    radial-gradient(circle, rgba(255,255,255,0.40) 0 3px, transparent 4px);
  background-repeat: no-repeat;
  background-position: center;
}

.cc-logo-ornament-light::before,
.cc-logo-ornament-light::after{
  content: "";
  position: absolute;
  top: 50%;
  width: 46%;
  height: 1px;
  background: rgba(255,255,255,0.20);
}

.cc-logo-ornament-light::before{ left: 0; }
.cc-logo-ornament-light::after{ right: 0; }

.cc-feature-text{
  margin: 0 0 1.25rem 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  font-size: 1.03rem;
  max-width: 36rem;
}

.cc-feature-points{
  margin: 0;
  padding: 0;
  list-style: none;

  display: grid;
  gap: 0.7rem;
  max-width: 36rem;
}

.cc-feature-points li{
  position: relative;
  padding-left: 1.1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}

.cc-feature-points li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
}

.cc-feature-link{
  margin-top: 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;

  text-decoration: none;
  color: rgba(255,255,255,0.92);
  font-weight: 650;
}

.cc-feature-link:hover{ color: #ffffff; }

.cc-feature-link-icon{
  display: inline-flex;
  transition: transform 200ms ease;
}

.cc-feature-link:hover .cc-feature-link-icon{
  transform: translateX(4px);
}

@media (prefers-reduced-motion: no-preference){
  @keyframes ccFeatureDrift{
    from { transform: scale(1.05); }
    to { transform: scale(1.01); }
  }
  .cc-feature::before{
    animation: ccFeatureDrift 18s ease-in-out infinite alternate;
  }
}

@media (prefers-reduced-motion: reduce){
  .cc-feature::before{
    animation: none;
    transform: none;
  }
}

/* =============================================================================
   TEAM SECTION (unchanged, but uses --cc-tint which is now warm secondary)
   ========================================================================== */
.cc-team{
  position: relative;
  background: #ffffff;

  padding: clamp(3.5rem, 7vh, 5.5rem) 0;

  min-height: 100vh;
  min-height: 100svh;

  display: flex;
  align-items: center;
}

@media (min-width: 992px){
  .cc-team::before{
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 42%;
    background: var(--cc-tint);
    pointer-events: none;
  }
}

.cc-team .container{
  position: relative;
  z-index: 1;
}

.cc-team-head{
  position: relative;
  padding-left: 1.25rem;
}

.cc-team-head::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  height: 72%;
  width: 1px;
  background: rgba(6,52,40,0.18);
}

.cc-team-directory{
  position: relative;
  background: var(--cc-tint);
  border: 1px solid rgba(6,52,40,0.14);
  border-radius: 18px;
  overflow: hidden;
}

.cc-team-directory-lines{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cc-team-directory-lines::before{
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: rgba(6,52,40,0.10);
}

.cc-team-directory-lines::after{
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 92px;
  height: 1px;
  background: rgba(6,52,40,0.10);
}

.cc-team-grid{
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px){
  .cc-team-grid{ grid-template-columns: 1fr 1fr; }
}

.cc-person{
  position: relative;
  padding: 1.5rem 1.5rem 1.35rem 1.5rem;
  background: transparent;

  border-bottom: 1px solid rgba(6,52,40,0.14);
  border-right: 1px solid rgba(6,52,40,0.14);

  transition: background 200ms ease;
}

.cc-person:nth-child(2n){ border-right: 0; }
.cc-person:nth-last-child(-n+2){ border-bottom: 0; }

@media (max-width: 767.98px){
  .cc-person{ border-right: 0; }
  .cc-person:nth-last-child(-n+2){ border-bottom: 1px solid rgba(6,52,40,0.14); }
  .cc-person:last-child{ border-bottom: 0; }
}

/* Secondary tint hover */
.cc-person:hover{
  background: rgba(255,248,236,0.65);
}

.cc-person-top{
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.cc-avatar{
  width: 46px;
  height: 46px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  border: 1px solid rgba(6,52,40,0.18);

  color: #063428;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.cc-person-name{
  margin: 0;
  color: #063428;
  letter-spacing: -0.01em;
  font-weight: 650;
  font-size: 1.08rem;
}

.cc-person-role{
  margin: 0.25rem 0 0 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: rgba(6,52,40,0.60);
}

.cc-person-bio{
  margin: 0.95rem 0 1rem 0;
  color: rgba(6,52,40,0.72);
  line-height: 1.65;
}

.cc-person-contact{
  display: grid;
  gap: 0.55rem;
}

.cc-contact-row{
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.6rem;
  align-items: baseline;

  text-decoration: none;
  color: rgba(6,52,40,0.78);
}

.cc-contact-row:hover{ color: rgba(6,52,40,0.92); }

.cc-contact-label{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 22px;
  height: 22px;
  border-radius: 6px;

  background: rgba(6,52,40,0.06);
  border: 1px solid rgba(6,52,40,0.12);

  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(6,52,40,0.70);
}

.cc-contact-value{
  font-size: 0.95rem;
  line-height: 1.4;
  word-break: break-word;
}

/* =============================================================================
   CONTACT BAND
   ========================================================================== */
.cc-contact-band{
  position: relative;
  overflow: hidden;

  min-height: 100vh;
  min-height: 100svh;

  display: flex;
  align-items: center;

  padding: clamp(3.5rem, 7vh, 5.5rem) 0;

  color: #ffffff;

  background:
    radial-gradient(900px circle at 18% 22%, rgba(255,255,255,0.08), transparent 55%),
    radial-gradient(700px circle at 85% 75%, rgba(255,255,255,0.06), transparent 52%),
    linear-gradient(135deg, var(--cc-green-900), var(--cc-green-800));
}

.cc-contact-band::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;

  background:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.10) 0,
      rgba(255,255,255,0.10) 1px,
      transparent 1px,
      transparent 96px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.08) 0,
      rgba(255,255,255,0.08) 1px,
      transparent 1px,
      transparent 140px
    );
}

.cc-contact-band .container{
  position: relative;
  z-index: 1;
}

.cc-contact-copy{
  position: relative;
  padding-right: 1.25rem;
  max-width: 40rem;
}

.cc-contact-copy::after{
  content: "";
  position: absolute;
  right: 0;
  top: 0.35rem;
  height: 78%;
  width: 1px;
  background: rgba(255,255,255,0.20);
}

.cc-kicker-light{
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;

  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.80);
}

.cc-h2-light{
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.12;
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  color: #ffffff;
}

.cc-p-light{
  margin: 0;
  margin-top: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  font-size: 1.03rem;
  max-width: 34rem;
}

.cc-contact-note{
  margin: 1.1rem 0 0 0;
  color: rgba(255,255,255,0.70);
  font-size: 0.95rem;
  line-height: 1.6;
}

.cc-info-card{
  position: relative;
  border-radius: 18px;
  overflow: hidden;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);

  box-shadow: 0 22px 55px rgba(2,6,23,0.18);

  padding: 1.6rem 1.6rem 1.45rem 1.6rem;
}

@media (max-width: 575.98px){
  .cc-info-card{ padding: 1.35rem; }
}

.cc-info-title{
  margin: 0 0 1rem 0;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  font-weight: 650;
}

.cc-info-card-lines{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cc-info-card-lines::before{
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: rgba(255,255,255,0.10);
}

.cc-info-card-lines::after{
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 92px;
  height: 1px;
  background: rgba(255,255,255,0.10);
}

.cc-visit-address{
  margin: 0 0 1rem 0;
  color: rgba(255,255,255,0.80);
  line-height: 1.6;
}

.cc-visit-strong{
  display: inline-block;
  margin-right: 0.35rem;
  color: rgba(255,255,255,0.92);
  font-weight: 650;
}

.cc-hours{
  display: grid;
  gap: 0.55rem;
}

.cc-hours-row{
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.9rem;
}

.cc-hours-day{ color: rgba(255,255,255,0.72); }
.cc-hours-time{ color: rgba(255,255,255,0.90); }

@media (max-width: 575.98px){
  .cc-hours-row{ grid-template-columns: 98px 1fr; }
}

#contact{ scroll-margin-top: 90px; }

.cc-direct-links{
  margin-top: 1.25rem;
  display: grid;
  gap: 0.55rem;
}

.cc-direct-link{
  text-decoration: none;
  font-weight: 650;
  color: rgba(255,255,255,0.90);
}

.cc-direct-link span{ color: #ffffff; }

.cc-direct-link:hover{
  color: #ffffff;
  text-decoration: underline;
}

.cc-form-card .form-label{
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
}

.cc-form-card .form-control{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffffff;
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
}

.cc-form-card .form-control::placeholder{
  color: rgba(255,255,255,0.55);
}

.cc-form-card .form-control:focus{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.08);
  color: #ffffff;
}

.cc-form-card .form-text{
  color: rgba(255,255,255,0.65);
  margin-top: 0.55rem;
}

.cc-policy-link{
  color: rgba(255,255,255,0.90);
  font-weight: 650;
  text-decoration: none;
}

.cc-policy-link:hover{
  color: #ffffff;
  text-decoration: underline;
}

.cc-btn-submit{ padding: 0.85rem 1.05rem; }

.cc-form-note{
  color: rgba(255,255,255,0.70);
  font-size: 0.92rem;
}

/* Alerts */
.cc-alert{
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  margin: 0 0 1rem 0;
}

.cc-alert-success{ border-color: rgba(255,255,255,0.22); }
.cc-alert-error{ border-color: rgba(255,255,255,0.25); }

/* Hide honeypot */
.cc-hp{
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
}

/* =============================================================================
   FOOTER
   ========================================================================== */
.cc-footer{
  position: relative;
  overflow: hidden;

  padding: 3rem 0 2rem;
  color: #ffffff;

  background:
    radial-gradient(900px circle at 18% 22%, rgba(255,255,255,0.08), transparent 55%),
    radial-gradient(700px circle at 85% 75%, rgba(255,255,255,0.06), transparent 52%),
    linear-gradient(135deg, var(--cc-green-900), var(--cc-green-800));

  border-top: 1px solid rgba(255,255,255,0.16);
}

.cc-footer::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.10;

  background:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.10) 0,
      rgba(255,255,255,0.10) 1px,
      transparent 1px,
      transparent 110px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.08) 0,
      rgba(255,255,255,0.08) 1px,
      transparent 1px,
      transparent 150px
    );
}

.cc-footer .container{
  position: relative;
  z-index: 1;
}

.cc-footer-brand{
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: rgba(255,255,255,0.95);
}

.cc-footer-brand:hover{ color: #ffffff; }

.cc-footer-tagline{
  margin: 0.9rem 0 0 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  max-width: 36rem;
}

.cc-footer-kicker{
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
}

.cc-footer-ornament-light{
  position: relative;
  height: 10px;
  margin: 0.75rem 0 0.9rem 0;

  background:
    radial-gradient(circle, rgba(255,255,255,0.38) 0 3px, transparent 4px);
  background-repeat: no-repeat;
  background-position: center;
}

.cc-footer-ornament-light::before,
.cc-footer-ornament-light::after{
  content: "";
  position: absolute;
  top: 50%;
  width: 46%;
  height: 1px;
  background: rgba(255,255,255,0.18);
}

.cc-footer-ornament-light::before{ left: 0; }
.cc-footer-ornament-light::after{ right: 0; }

.cc-footer-nav{
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cc-footer-nav a{
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-weight: 650;
}

.cc-footer-nav a:hover{
  color: #ffffff;
  text-decoration: underline;
}

.cc-footer-divider{
  margin-top: 2rem;
  height: 1px;
  background: rgba(255,255,255,0.16);
}

.cc-footer-bottom{
  margin-top: 1.25rem;

  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;

  font-size: 0.92rem;
  line-height: 1.6;
}

.cc-footer-small{ color: rgba(255,255,255,0.70); }

@media (min-width: 768px){
  .cc-footer-links{ text-align: right; }

  .cc-footer-ornament-light{ margin-left: auto; }

  .cc-footer-nav{
    flex-direction: row;
    justify-content: flex-end;
    gap: 1.25rem;
  }
}

/* =============================================================================
   FOOTER: contact list + social link
   Add this block near the footer section of site.css
   ========================================================================== */

/* Contact list layout */
.cc-footer-contact{
  display: grid;
  gap: 0.7rem;
  margin-top: 0.25rem;
}

.cc-footer-contact-link{
  display: grid;
  gap: 0.2rem;
  text-decoration: none;
  color: rgba(255,255,255,0.88);
}

.cc-footer-contact-link:hover{
  color: #ffffff;
  text-decoration: underline;
}

.cc-footer-contact-link.is-static{
  text-decoration: none;
  cursor: default;
}

.cc-footer-contact-link.is-static:hover{
  text-decoration: none;
}

.cc-footer-contact-label{
  color: rgba(255,255,255,0.68);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 650;
}

.cc-footer-contact-value{
  color: rgba(255,255,255,0.90);
  line-height: 1.45;
}

/* Keep footer nav stacked even on desktop */
.cc-footer-nav.is-stack{
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.6rem;
}

/* If your existing CSS forces .cc-footer-nav into a row on desktop,
   this override ensures the stacked version stays stacked */
@media (min-width: 768px){
  .cc-footer-nav.is-stack{
    flex-direction: column;
    align-items: flex-end; /* matches your right-aligned footer column */
  }
}

/* Social button (Facebook) */
.cc-footer-social{
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (min-width: 768px){
  .cc-footer-links .cc-footer-social{
    justify-content: flex-end;
  }
}

.cc-social-link{
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;

  padding: 0.55rem 0.7rem;
  border-radius: 12px;

  text-decoration: none;
  font-weight: 650;
  color: rgba(255,255,255,0.90);

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);

  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.cc-social-link:hover{
  color: #ffffff;
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-1px);
}

.cc-social-icon{
  display: inline-flex;
}

.cc-footer-developer-credit{
  color: rgba(255,255,255,0.90);
  line-height: 1.45;
  text-decoration: none;
}

/* Toast safety */
.toast-container{ z-index: 1200; }

#ccFormToast.toast.show,
#ccFormToast.toast.showing{
  display: block !important;
  opacity: 1 !important;
}

/* =============================================================================
   Residential Sales page additions
   - Add to the end of site.css
   ========================================================================== */

/* Anchor offset so sections do not hide under the overlay navbar */
#sales-overview,
#sales-process,
#sales-faq,
#sales-enquiry{
  scroll-margin-top: 90px;
}

/* Optional: if you add a dedicated hero image for this page,
   If the file does not exist, the panel will fall back to the existing gradients. */
.is-sales .cc-hero-media::before{
  background-image: url("../img/og-sales.jpg");
}

#sales-overview,
#sales-process{
  scroll-margin-top: 90px;
}

/* ---------------------------
   SALES OVERVIEW BAND
   ------------------------ */
.cc-sales-band{
  position: relative;
  padding: clamp(3.5rem, 7vh, 5.5rem) 0;
  background: #fff8ec;
  overflow: hidden;
}

.cc-sales-band::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background:
    radial-gradient(900px circle at 20% 20%, rgba(255,255,255,0.55), transparent 60%),
    radial-gradient(700px circle at 85% 70%, rgba(255,255,255,0.35), transparent 55%);
}

.cc-sales-band .container{
  position: relative;
  z-index: 1;
}

.cc-sales-head{
  position: relative;
  padding-left: 1.25rem;
}

.cc-sales-head::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  height: 78%;
  width: 1px;
  background: rgba(6,52,40,0.18);
}

.cc-sales-badges{
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cc-badge{
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: rgba(6,52,40,0.06);
  border: 1px solid rgba(6,52,40,0.14);
  color: rgba(6,52,40,0.78);
  font-size: 0.9rem;
  font-weight: 650;
}

/* Cards */
.cc-sales-card-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 768px){
  .cc-sales-card-grid{
    grid-template-columns: 1fr 1fr;
  }
}

.cc-sales-card{
  position: relative;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(6,52,40,0.14);
  box-shadow: 0 18px 40px rgba(2,6,23,0.08);
  padding: 1.35rem 1.35rem 1.2rem 1.35rem;
  overflow: hidden;
}

.cc-sales-card::before{
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: rgba(6,52,40,0.10);
}

.cc-sales-card::after{
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 92px;
  height: 1px;
  background: rgba(6,52,40,0.10);
}

.cc-sales-card-top{
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cc-sales-icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(6,52,40,0.06);
  border: 1px solid rgba(6,52,40,0.14);
  color: rgba(6,52,40,0.82);
  flex: 0 0 auto;
}

.cc-sales-card-title{
  margin: 0;
  color: #063428;
  letter-spacing: -0.01em;
  font-weight: 650;
  font-size: 1.1rem;
}

.cc-sales-card-text{
  margin: 0.7rem 0 0.9rem 0;
  color: rgba(6,52,40,0.72);
  line-height: 1.65;
}

.cc-sales-card-points{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.cc-sales-card-points li{
  position: relative;
  padding-left: 1.1rem;
  color: rgba(6,52,40,0.72);
  line-height: 1.55;
}

.cc-sales-card-points li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(6,52,40,0.35);
}

/* Bottom strip */
.cc-sales-strip{
  margin-top: 1.25rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(6,52,40,0.14);
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

@media (min-width: 768px){
  .cc-sales-strip{
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.cc-sales-strip-item{
  padding: 1rem 1.1rem;
  border-top: 1px solid rgba(6,52,40,0.12);
}

.cc-sales-strip-item:first-child{
  border-top: 0;
}

@media (min-width: 768px){
  .cc-sales-strip-item{
    border-top: 0;
    border-left: 1px solid rgba(6,52,40,0.12);
  }
  .cc-sales-strip-item:first-child{
    border-left: 0;
  }
}

.cc-sales-strip-title{
  margin: 0;
  color: #063428;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.cc-sales-strip-text{
  margin: 0.35rem 0 0 0;
  color: rgba(6,52,40,0.70);
  line-height: 1.55;
  font-size: 0.95rem;
}

/* ---------------------------
   SALES ROADMAP
   ------------------------ */

/* Override .cc-process desktop split background for this section only */
.cc-sales-roadmap{
  position: relative;
  padding: clamp(3.5rem, 7vh, 5.5rem) 0;
  background: #ffffff;
  display: block;
}

@media (min-width: 992px){
  .cc-sales-roadmap{
    background: linear-gradient(180deg, #ffffff 0%, var(--cc-tint) 100%);
    display: block;
  }
  .cc-sales-roadmap::before{
    content: none;
  }
}

/* Left heading line */
.cc-roadmap-head{
  position: relative;
  padding-left: 1.25rem;
}

.cc-roadmap-head::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  height: 78%;
  width: 1px;
  background: rgba(6,52,40,0.18);
}

/* Toolkit card */
.cc-roadmap-toolkit{
  position: relative;
  margin-top: 1.2rem;
  border-radius: 18px;
  background: #fff8ec;
  border: 1px solid rgba(6,52,40,0.14);
  padding: 1.25rem 1.25rem 1.1rem 1.25rem;
  overflow: hidden;
}

.cc-roadmap-toolkit-lines{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cc-roadmap-toolkit-lines::before{
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: rgba(6,52,40,0.10);
}

.cc-roadmap-toolkit-lines::after{
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 92px;
  height: 1px;
  background: rgba(6,52,40,0.10);
}

.cc-roadmap-toolkit-title{
  margin: 0 0 0.75rem 0;
  color: #063428;
  font-weight: 650;
  letter-spacing: -0.01em;
  font-size: 1.1rem;
}

.cc-roadmap-toolkit-list{
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(6,52,40,0.72);
  line-height: 1.65;
}

.cc-roadmap-toolkit-list li{
  margin: 0.35rem 0;
}

/* Steps grid container */
.cc-sales-roadmap .cc-process-steps{
  margin-top: 1.35rem;
  padding-left: 0;
  position: static;
}

.cc-sales-roadmap .cc-process-steps::before{
  content: none;
}

.cc-roadmap-steps{
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px){
  .cc-roadmap-steps{
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1200px){
  .cc-roadmap-steps{
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Turn steps into numbered cards (scoped to this section only) */
.cc-sales-roadmap .cc-step{
  width: 100%;
  position: relative;
  border: 1px solid rgba(6,52,40,0.14);
  border-radius: 18px;
  background: #fff8ec;
  padding: 1.15rem 1.15rem 1.05rem 3.35rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  border-bottom: 0;
}

.cc-sales-roadmap .cc-step::before{
  content: attr(data-step);
  position: absolute;
  left: 1.1rem;
  top: 1.05rem;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(6,52,40,0.06);
  border: 1px solid rgba(6,52,40,0.14);
  color: rgba(6,52,40,0.82);
  font-weight: 700;
}

.cc-sales-roadmap .cc-step-dot{
  display: none;
}

.cc-sales-roadmap .cc-step:hover{
  background: rgba(255,255,255,0.70);
}

.cc-sales-roadmap .cc-step.is-active{
  background: #ffffff;
  border-color: rgba(6,52,40,0.25);
  box-shadow: 0 18px 40px rgba(2,6,23,0.08);
}

/* Arrow on the right */
.cc-step-arrow{
  margin-left: auto;
  color: rgba(6,52,40,0.55);
  transition: transform 200ms ease, color 200ms ease;
}

.cc-sales-roadmap .cc-step:hover .cc-step-arrow{
  color: rgba(6,52,40,0.85);
  transform: translateX(4px);
}

/* Metrics strip */
.cc-sales-metrics{
  margin-top: 1.25rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(6,52,40,0.14);
  box-shadow: 0 18px 40px rgba(2,6,23,0.08);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 992px){
  .cc-sales-metrics{
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.cc-metric{
  padding: 1.15rem 1.2rem;
  border-top: 1px solid rgba(6,52,40,0.12);
}

.cc-metric:first-child{
  border-top: 0;
}

@media (min-width: 992px){
  .cc-metric{
    border-top: 0;
    border-left: 1px solid rgba(6,52,40,0.12);
  }
  .cc-metric:first-child{
    border-left: 0;
  }
}

.cc-metric-title{
  margin: 0;
  color: #063428;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.cc-metric-text{
  margin: 0.45rem 0 0 0;
  color: rgba(6,52,40,0.72);
  line-height: 1.65;
}

/* FAQ section */
.cc-faq{
  position: relative;
  background: var(--cc-tint);
  padding: clamp(3.5rem, 7vh, 5.5rem) 0;
}

.cc-faq-head{
  position: relative;
  padding-left: 1.25rem;
}

.cc-faq-head::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  height: 72%;
  width: 1px;
  background: rgba(6,52,40,0.18);
}

/* FAQ panel (white card on warm tint) */
.cc-faq-panel{
  position: relative;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(6,52,40,0.14);
  box-shadow: 0 18px 40px rgba(2,6,23,0.08);
  overflow: hidden;
  padding: 0.25rem 1.5rem 1.1rem 1.5rem;
}

@media (max-width: 575.98px){
  .cc-faq-panel{
    padding: 0.25rem 1.1rem 1.0rem 1.1rem;
  }
}

/* Decorative lines similar to other panels */
.cc-faq-panel-lines{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cc-faq-panel-lines::before{
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: rgba(6,52,40,0.10);
}

.cc-faq-panel-lines::after{
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 92px;
  height: 1px;
  background: rgba(6,52,40,0.10);
}

/* FAQ items using native details/summary for accessibility */
.cc-faq-item{
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(6,52,40,0.14);
}

.cc-faq-item:last-of-type{
  border-bottom: 0;
}

.cc-faq-item summary{
  cursor: pointer;
  list-style: none;
  font-weight: 650;
  color: #063428;
  letter-spacing: -0.01em;
}

.cc-faq-item summary::-webkit-details-marker{
  display: none;
}

/* Custom chevron */
.cc-faq-item summary::after{
  content: "+";
  float: right;
  color: rgba(6,52,40,0.60);
  font-weight: 700;
  margin-left: 1rem;
}

.cc-faq-item[open] summary::after{
  content: "-";
}

.cc-faq-answer{
  margin-top: 0.65rem;
  color: rgba(6,52,40,0.72);
  line-height: 1.65;
}

.cc-faq-answer p{
  margin: 0;
}

.cc-faq-disclaimer{
  margin: 1.1rem 0 0 0;
  color: rgba(6,52,40,0.60);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Sales form select styling to match dark form controls */
.cc-form-card .form-select.cc-form-select{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffffff;
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
}

.cc-form-card .form-select.cc-form-select:focus{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.08);
  color: #ffffff;
}

.cc-form-card .form-select.cc-form-select option{
  color: #063428;
}

/* =============================================================================
   Off the Plan page additions
   - Add to the end of site.css
   ========================================================================== */

/* Anchor offset so sections do not hide under the overlay navbar */
#offplan-overview,
#offplan-process,
#offplan-featured,
#offplan-faq,
#offplan-enquiry{
  scroll-margin-top: 90px;
}

/* Optional: if you add a dedicated hero image for this page,
   place it at: /assets/img/og-offplan.jpeg
   If the file does not exist, the panel will fall back to the existing gradients. */
.is-offplan .cc-hero-media::before{
  background-image: url("../img/og-offplan.jpeg");
}

/* ---------------------------
   Shared badge (safe if already defined elsewhere)
   ------------------------ */
.cc-badge{
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: rgba(6,52,40,0.06);
  border: 1px solid rgba(6,52,40,0.14);
  color: rgba(6,52,40,0.78);
  font-size: 0.9rem;
  font-weight: 650;
}

/* ---------------------------
   OFFPLAN OVERVIEW BAND
   ------------------------ */
.is-offplan .cc-offplan-band{
  position: relative;
  padding: clamp(3.5rem, 7vh, 5.5rem) 0;
  background: #fff8ec;
  overflow: hidden;
}

.is-offplan .cc-offplan-band::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background:
    radial-gradient(900px circle at 20% 20%, rgba(255,255,255,0.55), transparent 60%),
    radial-gradient(700px circle at 85% 70%, rgba(255,255,255,0.35), transparent 55%);
}

.is-offplan .cc-offplan-band .container{
  position: relative;
  z-index: 1;
}

.is-offplan .cc-offplan-head{
  position: relative;
  padding-left: 1.25rem;
}

.is-offplan .cc-offplan-head::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  height: 78%;
  width: 1px;
  background: rgba(6,52,40,0.18);
}

.is-offplan .cc-offplan-badges{
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Cards */
.is-offplan .cc-offplan-card-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 768px){
  .is-offplan .cc-offplan-card-grid{
    grid-template-columns: 1fr 1fr;
  }
}

.is-offplan .cc-offplan-card{
  position: relative;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(6,52,40,0.14);
  box-shadow: 0 18px 40px rgba(2,6,23,0.08);
  padding: 1.35rem 1.35rem 1.2rem 1.35rem;
  overflow: hidden;
}

.is-offplan .cc-offplan-card::before{
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: rgba(6,52,40,0.10);
}

.is-offplan .cc-offplan-card::after{
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 92px;
  height: 1px;
  background: rgba(6,52,40,0.10);
}

.is-offplan .cc-offplan-card-top{
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.is-offplan .cc-offplan-icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(6,52,40,0.06);
  border: 1px solid rgba(6,52,40,0.14);
  color: rgba(6,52,40,0.82);
  flex: 0 0 auto;
}

.is-offplan .cc-offplan-card-title{
  margin: 0;
  color: #063428;
  letter-spacing: -0.01em;
  font-weight: 650;
  font-size: 1.1rem;
}

.is-offplan .cc-offplan-card-text{
  margin: 0.7rem 0 0.9rem 0;
  color: rgba(6,52,40,0.72);
  line-height: 1.65;
}

.is-offplan .cc-offplan-card-points{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.is-offplan .cc-offplan-card-points li{
  position: relative;
  padding-left: 1.1rem;
  color: rgba(6,52,40,0.72);
  line-height: 1.55;
}

.is-offplan .cc-offplan-card-points li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(6,52,40,0.35);
}

/* Bottom strip */
.is-offplan .cc-offplan-strip{
  margin-top: 1.25rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(6,52,40,0.14);
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

@media (min-width: 768px){
  .is-offplan .cc-offplan-strip{
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.is-offplan .cc-offplan-strip-item{
  padding: 1rem 1.1rem;
  border-top: 1px solid rgba(6,52,40,0.12);
}

.is-offplan .cc-offplan-strip-item:first-child{
  border-top: 0;
}

@media (min-width: 768px){
  .is-offplan .cc-offplan-strip-item{
    border-top: 0;
    border-left: 1px solid rgba(6,52,40,0.12);
  }
  .is-offplan .cc-offplan-strip-item:first-child{
    border-left: 0;
  }
}

.is-offplan .cc-offplan-strip-title{
  margin: 0;
  color: #063428;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.is-offplan .cc-offplan-strip-text{
  margin: 0.35rem 0 0 0;
  color: rgba(6,52,40,0.70);
  line-height: 1.55;
  font-size: 0.95rem;
}

/* ---------------------------
   OFFPLAN ROADMAP (process)
   ------------------------ */

/* Override the default desktop split background for this section only */
.is-offplan .cc-offplan-roadmap{
  position: relative;
  padding: clamp(3.5rem, 7vh, 5.5rem) 0;
  background: #ffffff;
  display: block;
}

@media (min-width: 992px){
  .is-offplan .cc-offplan-roadmap{
    background: linear-gradient(180deg, #ffffff 0%, var(--cc-tint) 100%);
  }
  .is-offplan .cc-offplan-roadmap::before{
    content: none;
  }
}

.is-offplan .cc-offplan-roadmap-head{
  position: relative;
  padding-left: 1.25rem;
}

.is-offplan .cc-offplan-roadmap-head::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  height: 78%;
  width: 1px;
  background: rgba(6,52,40,0.18);
}

/* Toolkit */
.is-offplan .cc-offplan-toolkit{
  position: relative;
  margin-top: 1.2rem;
  border-radius: 18px;
  background: #fff8ec;
  border: 1px solid rgba(6,52,40,0.14);
  padding: 1.25rem 1.25rem 1.1rem 1.25rem;
  overflow: hidden;
}

.is-offplan .cc-offplan-toolkit-lines{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.is-offplan .cc-offplan-toolkit-lines::before{
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: rgba(6,52,40,0.10);
}

.is-offplan .cc-offplan-toolkit-lines::after{
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 92px;
  height: 1px;
  background: rgba(6,52,40,0.10);
}

.is-offplan .cc-offplan-toolkit-title{
  margin: 0 0 0.75rem 0;
  color: #063428;
  font-weight: 650;
  letter-spacing: -0.01em;
  font-size: 1.1rem;
}

.is-offplan .cc-offplan-toolkit-list{
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(6,52,40,0.72);
  line-height: 1.65;
}

.is-offplan .cc-offplan-toolkit-list li{
  margin: 0.35rem 0;
}

/* Steps become a grid of cards */
.is-offplan .cc-offplan-roadmap .cc-process-steps{
  margin-top: 1.35rem;
  padding-left: 0;
  position: static;
}

.is-offplan .cc-offplan-roadmap .cc-process-steps::before{
  content: none;
}

.is-offplan .cc-offplan-step-grid{
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px){
  .is-offplan .cc-offplan-step-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1200px){
  .is-offplan .cc-offplan-step-grid{
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.is-offplan .cc-offplan-step-grid .cc-step{
  width: 100%;
  position: relative;
  border: 1px solid rgba(6,52,40,0.14);
  border-radius: 18px;
  background: #fff8ec;
  padding: 1.15rem 1.15rem 1.05rem 3.35rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  border-bottom: 0;
}

.is-offplan .cc-offplan-step-grid .cc-step::before{
  content: attr(data-step);
  position: absolute;
  left: 1.1rem;
  top: 1.05rem;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(6,52,40,0.06);
  border: 1px solid rgba(6,52,40,0.14);
  color: rgba(6,52,40,0.82);
  font-weight: 700;
}

.is-offplan .cc-offplan-step-grid .cc-step-dot{
  display: none;
}

.is-offplan .cc-offplan-step-grid .cc-step:hover{
  background: rgba(255,255,255,0.70);
}

.is-offplan .cc-offplan-step-grid .cc-step.is-active{
  background: #ffffff;
  border-color: rgba(6,52,40,0.25);
  box-shadow: 0 18px 40px rgba(2,6,23,0.08);
}

.is-offplan .cc-step-arrow{
  margin-left: auto;
  color: rgba(6,52,40,0.55);
  transition: transform 200ms ease, color 200ms ease;
}

.is-offplan .cc-offplan-step-grid .cc-step:hover .cc-step-arrow{
  color: rgba(6,52,40,0.85);
  transform: translateX(4px);
}

/* ---------------------------
   WHAT TO CHECK (checklist)
   ------------------------ */
.is-offplan .cc-offplan-checklist{
  position: relative;
  padding: clamp(3.5rem, 7vh, 5.5rem) 0;
  background: #ffffff;
}

@media (min-width: 992px){
  .is-offplan .cc-offplan-checklist{
    background: linear-gradient(
      90deg,
      #ffffff 0%,
      #ffffff 48%,
      #fff8ec 48%,
      #fff8ec 100%
    );
  }
}

.is-offplan .cc-offplan-check-head{
  position: relative;
  padding-left: 1.25rem;
}

.is-offplan .cc-offplan-check-head::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  height: 78%;
  width: 1px;
  background: rgba(6,52,40,0.18);
}

.is-offplan .cc-offplan-check-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 768px){
  .is-offplan .cc-offplan-check-grid{
    grid-template-columns: 1fr 1fr;
  }
}

.is-offplan .cc-check-card{
  position: relative;
  border-radius: 18px;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(6,52,40,0.14);
  padding: 1.2rem 1.2rem 1.05rem 1.2rem;
  overflow: hidden;
}

.is-offplan .cc-check-card-lines{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.is-offplan .cc-check-card-lines::before{
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: rgba(6,52,40,0.10);
}

.is-offplan .cc-check-card-lines::after{
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 92px;
  height: 1px;
  background: rgba(6,52,40,0.10);
}

.is-offplan .cc-check-card-title{
  margin: 0 0 0.75rem 0;
  color: #063428;
  font-weight: 650;
  letter-spacing: -0.01em;
  font-size: 1.08rem;
}

.is-offplan .cc-check-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.is-offplan .cc-check-list li{
  position: relative;
  padding-left: 1.1rem;
  color: rgba(6,52,40,0.72);
  line-height: 1.55;
}

.is-offplan .cc-check-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(6,52,40,0.35);
}