/* Info Pages */

.info-title {
  font-size: 2.2rem;
  font-weight: 700;
}
.info-location {
  color: #666;
  font-size: 1.1rem;
}
.info-summary {
  margin-top: 1rem;
  font-size: 1.05rem;
}

/* Highlights */
.info-highlights {
  list-style: none;
  padding: 0;
}
.info-highlights li {
  background: var(--muted);
  padding: .8rem 1rem;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  margin-bottom: .6rem;
}

/* =========================================================
   ABOUT SECTION
   ========================================================= */

.about-points {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
}

.about-points li {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.about-points li::before {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  border: 2px solid var(--accent);
  margin-top: 0.4rem;
}

.about-sidebar {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1.7rem 1.9rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  font-size: 0.9rem;
  color: var(--text-muted);
}


/* =========================================================
   CLEAN CONTACT SECTION
   ========================================================= */

.clean-contact {
  background: #ffffff;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 2.7rem;
  align-items: flex-start;
}

.contact-aside {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-aside strong {
  color: var(--text-main);
}

.contact {
  background: #ffffff;
  color: #222;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-info h3 {
  margin: 1.2rem 0 0.4rem;
  font-size: 1.05rem;
  color: #333;
}

.contact-info p {
  margin: 0 0 .5rem;
  color: #555;
}

.contact-info .section-title {
  color: #111;
}

/* =========================================================
   PROJECTS PAGES
   ========================================================= */


.projects {
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  padding-top: 4rem;
  padding-bottom: 4rem;
  color: #222;
}
.projects-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.work-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.work-item:hover img {
  transform: scale(1.05);
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity .3s ease;
}

.work-overlay h3 {
  margin: 0;
  font-size: 1.2rem;
}

.work-overlay p {
  margin: 0.3rem 0 0;
  font-size: .9rem;
  opacity: .9;
}

.work-item:hover .work-overlay {
  opacity: 1;

}
/* =========================================================
   PROJECT FILTER BAR
=========================================================  */

.project-filters {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 0px;
  width: 100%;
}

.filter-btn {
  background: none;
  /* border: 1px solid var(--border-subtle); */
  border:0px;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 10px;
  transition: background 200ms ease, color 200ms ease;
  text-transform: uppercase;
  font-size:.95rem;
}

.filter-btn.active {
  background: var(--accent);
  color: #fff;
  font-weight:400;
}

.filter-btn:hover{
  border: 1px solid black;
}

.filter-btn.active:hover{
  border:0px;
}

/* =========================================================
   PROJECT GRID
========================================================= */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 8px;
}


/* =========================================================
   PROJECT CARD – BASE + FILTER ANIMATION
========================================================= */

.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;

  opacity: 1;
  transform: translateY(0) scale(1);

  transition:
    opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);

  transition-delay: calc(var(--i, 0) * 90ms);
  will-change: transform, opacity;
  /* aspect-ratio: 3 / 5; */
  border-radius:10px;
}

/* Visible state */
.project-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Hidden state */
.project-card.is-hidden {
  opacity: 0;
  transform: translateY(60px) scale(0.9);
  pointer-events: none;
}


/* =========================================================
   PROJECT IMAGE MOTION
========================================================= */

.project-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 10px;

  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Image zoom on exit */
.project-card.is-hidden img {
  transform: scale(1.15);
}


/* =========================================================
   HOVER TITLE OVERLAY
========================================================= */

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transition: opacity 260ms ease;
}

.project-overlay h3 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-align: center;

  transform: translateY(12px);
  transition: transform 260ms ease;
}

/* Hover behavior */
.project-card:hover .project-overlay {
  opacity: 1;
}

.project-card:hover .project-overlay h3 {
  transform: translateY(0);
}


/* =========================================================
   MOBILE FALLBACK (NO HOVER)
========================================================= */

@media (hover: none) {
  .project-overlay {
    opacity: 1;
  }

  .project-overlay h3 {
    transform: none;
  }
}

.project-link {
  display: block;
  text-decoration: none;
  color: inherit;
}


  /* -------------------------------------------------
   STICKY FILTER BAR
-------------------------------------------------- */
.project-filters {
  text-align: center;
  margin: 3rem 0 2.5rem;
  padding: 1rem;
  background: var(--bg);
}
.project-filters.sticky {
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.filter-option {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin: 0 1rem;
  cursor: pointer;
}

.filter-option input {
  transform: scale(1.2);
}


  /* -------------------------------------------------
   MORE PROJECTS
-------------------------------------------------- */

/* Next / Previous nav */
.project-nav {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.project-nav a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  background: var(--muted);
  color: var(--text);
  font-weight: 600;
  transition: background .25s ease, color .25s ease;
}
.project-nav a:hover {
  background: var(--accent);
  color: #fff;
}

/* More projects grid */
.more-projects {
  max-width: 1100px;
  margin: 4rem auto 5rem;
  padding: 0 2rem;
}
.more-projects-header {
  display: block;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.more-projects-title {
  font-size: 1.7rem;
  font-weight: 700;
}
.more-projects-subtitle {
  font-size: .95rem;
  color: #777;
}
.more-projects-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0,1fr));
  gap: 1.5rem;
}


/* =========================================================
   BIO SECTION
========================================================= */

.section-alt {
  background: var(--bg);
}


.bio-copy p {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 18px;
}

.bio-sidebar {
  background: var(--bg-surface);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.138);
  text-align:center;
}

.bio-sidebar img{
  width:50%; border-radius:100px; border:5px solid rgba(0, 128, 128, 0.132);;
}

.bio-stats {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bio-stats li {
  margin-bottom: 22px;
}

.bio-stats li:last-child {
  margin-bottom: 0;
}

.bio-stats strong {
  display: block;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 2px;
}

.bio-stats span {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* =========================================================
   READY SECTION
   ========================================================= */

   #ready {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 0fr;
    gap: 2.5rem;
      background: rgba(244, 244, 244, 0.384);
    /* border-bottom: 1px solid var(--nav-border); */
    margin:auto;
    justify-content: center;
    text-align:center;
    gap:0;
  }
  
  #ready .section-lead {
    margin:auto;
  }
  
/* =========================================================
   CONTACT PAGE
   ========================================================= */
  .clean-contact {
    background: #fff;
    color: #222;
  }
  

/* =========================================================
   HOME PAGE
   ========================================================= */

  .forge-style h3{
    font-size:3.8rem;
    opacity: 75%;
  }
  
  .forge-style {
    padding: 50px 0;
  }
  .forge-style {
    padding: 40px 0;
    padding-bottom:0px;
  }
  
  .forge-style__wrap {
    max-width: 1500px;
    height: 700px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
  }
  
  /* Panels */
  .forge-panel {
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition:
      flex 0.7s cubic-bezier(.16,.84,.44,1),
      filter .4s ease;
    display: flex;
    align-items: flex-end;
    padding: 28px;
  }
  
  /* Image sources */
  .forge-panel--one {
    background-image: url("/assets/img/project_ct-westport/westport_38.jpg");
    border-radius:5px;
  }
  
  .forge-panel--two {
    background-image: url("/assets/img/project_fl-palmbeach/palmbeach_02.jpeg");
    border-radius:5px;
  }
  
  .forge-panel--three {
    background-image: url("/assets/img/project_ct-westport/westport_54.jpg");
    border-radius:5px;
  }
  
  /* Text */
  .forge-panel h3 {
    color: #fff;
    font-size: 4.5rem;
    margin: 0;
    z-index: 2;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    text-transform: uppercase;
    letter-spacing:-5px;
  }
  
  /* When hovering the container, hide all titles */
  .forge-style__wrap:hover .forge-panel h3 {
    opacity: 0;
    transform: translateY(10px);
  }
  
  /* Restore title on the hovered panel */
  .forge-style__wrap .forge-panel:hover h3 {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Smooth transition */
  .forge-panel h3 {
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  
  
  /* Overlay */
  .forge-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0,0,0,.45),
      rgba(0,0,0,.05)
    );
    transition: opacity .4s ease;
  }
  
  /* Shrink non-hovered panels */
  .forge-style__wrap:hover .forge-panel {
    flex: 0.6;
    filter: grayscale(.2) brightness(.85);
  }
  
  /* Hovered panel dominates */
  .forge-style__wrap .forge-panel:hover {
    flex: 2.6;
    filter: none;
  }
  
  /* Lighten overlay on hover */
  .forge-style__wrap .forge-panel:hover::before {
    opacity: 0.15;
  }
  
  /* Mobile fallback */
  @media (max-width: 900px) {
    .forge-style__wrap {
      flex-direction: column;
      height: auto;
    }
  
    .forge-panel {
      height: 260px;
      flex: none !important;
      filter: none;
    }
        .info-title {
    font-size: 1.8rem;
    font-weight: 700;
    }
    
    .project-filters {
  text-align: center;
  margin: 0;
  padding: 1rem;
  background: var(--bg);
}

.more-projects {
  max-width: 1100px;
  margin: 0rem auto 5rem;
  padding: 0 2rem;
}

  }
  @media (max-width: 720px) {
    .forge-panel h3{
      font-size:3.75rem;
    }
    .info-title {
    font-size: 1.8rem;
    font-weight: 700;
    }
    
    .more-projects {
  max-width: 1100px;
  margin: 0rem auto 5rem;
  padding: 0 2rem;
}
  }
  