:root {
  --bg: #f9f5ee; /* warmer white / soft cream */
  --red: #ef3e36;
  --black: #1a1a1a;
}

/* ============================
   GLOBAL
   ============================ */

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--black);
  scroll-behavior: smooth;
  height: 100%;
  margin: 0;
}

section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}



/* Only these are intended to be full-viewport sections */


#about,
#contact {
  min-height: auto;
}

/* Work and skills should size naturally */
#work,
#skills {
  min-height: auto;
}

/* Lead type sizing (used in About/Skills/Contact where applicable) */
p.lead {
  font-size: clamp(1.35rem, 1.6vw, 2rem);
}

/* Global small paragraph sizing (used under Gallery / Featured / etc.) */
.small {
  font-size: clamp(1rem, 1.2vw + 0.8rem, 1rem);
  line-height: 1.5;
}

/* ============================
   GLOBAL CTA LINKS
============================ */

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;

  color: var(--red);
  text-decoration: none;

  font-size: 0.78rem;
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 0.16em;

  transition:
    gap 0.3s ease,
    opacity 0.3s ease;
}

.cta-link::after {
  content: "→";

  opacity: 0;
  transform: translateX(-4px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.cta-link:hover {
  gap: 0.7rem;
  opacity: 0.9;
  color: var(--red);
}

.cta-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* ============================
   MOBILE PADDING TWEAKS
   ============================ */

@media (max-width: 768px) {
  .hero,
  #about,
  #work {
    padding-left: 20px;
    padding-right: 20px;
  }

  #about h2 {
    margin-top: 1em;
  }
}

/* ============================
   HEADER / NAV
   ============================ */

header {
  background: var(--bg);
  border-bottom: 1px solid #e0e0e0;
  z-index: 1000;
}

/* Sticky top navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1200; /* above content, below modals */
  background: var(--bg);
}

/* Offset main content for sticky header */
main {
  padding-top: 96px; /* adjust to match your header height */
}

/* Desktop header offset */
@media (min-width: 769px) {
  main {
    padding-top: 96px;
  }
}

/* Mobile header offset */
@media (max-width: 768px) {
  main {
    padding-top: 72px;
  }
}




/* Desktop header spacing */
@media (min-width: 769px) {
  .site-header {
    padding: 1.5rem 0;
  }
}

/* Logo */
.logo {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--black);
  text-transform: uppercase;
}
.logo span {
  color: var(--red);
}

/* Nav link styling */
.nav-link {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--black);
}
.nav-link:hover {
  color: var(--red);
}

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

.hero {
  padding: 3rem 0 4rem;
}

.hero-layout {
  display: grid;

  grid-template-columns:
    minmax(320px, 35%)
    minmax(0, 65%);

  gap: clamp(2rem, 3vw, 4rem);

  align-items: center;

  padding-top: 1em;
}

.hero-visual {
  width: 110%;
  max-width: none;
}

.hero-content {
  max-width: 760px;
  transform: translateY(-2em);
}

.hero .eyebrow {
  display: inline-block;

  font-size: 0.78rem;
  font-weight: 600;

  letter-spacing: 0.18em;
  text-transform: uppercase;

  margin-bottom: 1.5rem;
}

 .hero-title {
  font-size: clamp(2rem, 2.6vw, 2.4rem);

  line-height: 1.12;
  letter-spacing: -0.045em;

  max-width: 30ch;

  margin-bottom: 1.5rem;
	 
	 
}

.hero-intro {
  font-size: 1.15rem;
  line-height: 1.9;

  opacity: 0.78;

  max-width: 58ch;
}

.hero-visual {
  width: 100%;
  max-width: 100%;
}

.hero-visual img {
  width: 100%;
  height: auto;

  display: block;

  border-radius: 0;
  object-fit: contain;
}


/* MOBILE */

@media (max-width: 991px) {

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-title {
    max-width: none;
  }
	
	.hero-visual {
  width: 100vw;
  max-width: none;

  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hero-visual img {
  width: 100%;
}

}


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

.about {
  position: relative;
  min-height: 75vh;
padding: 6rem 0;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
 background-image: url("/images/about-portrait.png");

  background-size: cover;
  background-position: center;
  opacity: 0.25;
  mix-blend-mode: multiply;
  transform: translateX(5%);
  pointer-events: none;
}

@media (max-width: 991px) {
  .about-bg-image {
    width: 100%;
    opacity: 0.15;
    transform: none;
  }
}

.about .section-title {
  -webkit-text-stroke: 1px #fff;
}

.about .lead {
  margin-bottom: 1.5rem;
}

/* About scroll indicator */
.about-scroll {
  margin-top: 2.5rem;
  width: 64px;
  height: 64px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.about-scroll svg {
  width: 24px;
  height: 36px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-scroll:hover {
  background: #fff;
  color: var(--red);
  transform: translateY(-2px);
}




/* ============================
   SECTION LABELS
============================ */

.section-label {
  display: block;

  width: 100%;

  background: #f1ebe1;

  padding:
    1rem
    1.5rem;

  border-radius: 16px;

  font-size: 0.78rem;
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 0.18em;

  margin-bottom: 2.5rem;

  border: 1px solid rgba(0,0,0,0.04);
}

.section-label {
  display: flex;
  align-items: center;
}



/* ============================
   FEATURED PROJECTS
============================ */

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.featured-card {
  background: #f1ebe1;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 22px;
  overflow: hidden;

  text-decoration: none;
  color: inherit;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.featured-card:hover {
  transform: translateY(-4px);

  background: #efe7db;

  box-shadow:
    0 14px 40px rgba(0,0,0,0.05);
}

.featured-image {
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;

  transition: transform 0.45s ease;
}

.featured-card:hover img {
  transform: scale(1.04);
}

.featured-content {
  padding: 1.75rem;
}

.featured-content h3 {
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: -0.03em;

  margin-bottom: 0.65rem;
}

.featured-meta {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  opacity: 0.6;

  margin-bottom: 1.25rem;
}

.featured-description {
  font-size: 1rem;
  line-height: 1.8;

  opacity: 0.78;

  margin-bottom: 1.5rem;
}

.featured-link {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;

  opacity: 0.8;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
}

.work-section {
  background: var(--bg);
}



.work-image:hover img {
  transform: scale(1.05);
}


.work-link svg {
  transition: transform 0.3s ease;
}

.work-link:hover {
  color: var(--red);
}

.work-link:hover svg {
  transform: translateX(4px);
}

/* Your existing spacing overrides */
.py-5 {
  padding-top: 1rem !important;
  padding-bottom: 0 !important;
}
#work {
  padding-bottom: 0 !important;
}

/* ============================
   GALLERY BAND (Supporting Proof)
   ============================ */

.gallery-band {
  background: transparent;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: clamp(2.5rem, 4vw, 4rem);
  padding-bottom: clamp(3rem, 4vw, 5rem); /* ✅ FIX: give the band real height */
  margin-top: 1rem;
  margin-bottom: 0;
}

/* ✅ FIX: prevent work-section from painting over the band background */
.gallery-band .work-section {
  background: transparent;
}

.gallery-band .gallery-title {
  margin-top: 0 !important;
}

/* Title underline inside gallery band (keep) */
.gallery-band .gallery-title::after {
  content: "";
  display: block;
  height: 1px;
  background: rgba(0,0,0,0.12);
  margin-top: 0.9rem;
  width: 100%;
}

/* Gallery thumbs feel curated vs featured */
.gallery-band .work-card {
  gap: 0.4rem;
	
}

.gallery-band .work-image {
  margin-bottom: 0.85rem;
  border-radius: 20px;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: box-shadow 250ms ease, transform 250ms ease;
}

.gallery-band .work-image img {
  aspect-ratio: 5 / 4; /* different from featured */
  transform: scale(1);
}

.gallery-band .work-image:hover img {
  transform: scale(1.045);
}

.gallery-band .work-image:hover {
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

/* Gallery titles smaller */
.gallery-band .work-title {
  font-size: 1.35rem;
  font-weight: 300;
  margin-bottom: 0.1rem;
}

.gallery-band .work-subtitle {
  margin-bottom: 0;

}

/* Tighter internal gutters */
.gallery-band .row.g-5 {
  --bs-gutter-x: 2.25rem;
  --bs-gutter-y: 2.25rem;
	
}

@media (max-width: 768px) {
  .gallery-band .row.g-5 {
    --bs-gutter-x: 1.25rem;
    --bs-gutter-y: 1.75rem;
  }
}

/* Gallery modal */
.gallery-trigger { cursor: zoom-in; }



.gallery-modal .modal-body img {
  border-radius: 14px;
}

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

.gallery-modal {
  background: var(--bg);
  border: none;
  border-radius: 20px;
}

.gallery-modal .modal-body {
  padding: 0;
}

.gallery-modal img {
  border-radius: 12px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  opacity: 1;
}

.carousel-control-prev {
  left: calc(50% - 52vw);
}

.carousel-control-next {
  right: calc(50% - 52vw);
}

/* ============================
   MODAL ARROWS
============================ */



.carousel {
  overflow: visible;
}

.carousel-item {
  overflow: visible;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 48px;
  height: 48px;

  border-radius: 999px;

  background-color: rgba(255,255,255,0.96);

  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;

  box-shadow:
    0 8px 30px rgba(0,0,0,0.08);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%231a1a1a' viewBox='0 0 16 16'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%231a1a1a' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 0 0 .708L10.293 8l-5.647 5.646a.5.5 0 0 0 .708.708l6-6a.5.5 0 0 0 0-.708l-6-6a.5.5 0 0 0-.708 0z'/%3E%3C/svg%3E");
}

/* Remove link styling inside Selected Work tiles */
.gallery-band .gallery-tile,
.gallery-band .gallery-tile:hover,
.gallery-band .gallery-tile:visited {
  color: inherit;
  text-decoration: none;
}

/* Ensure text elements inside tiles look like normal text */
.gallery-band .gallery-tile h3,
.gallery-band .gallery-tile p {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 991px) {

  .carousel-control-prev {
    left: 0;
  }

  .carousel-control-next {
    right: 0;
  }

}

/* ============================
   CASE STUDY SLIDES
============================ */

.modal {
  z-index: 2000;
}

.modal-backdrop {
  z-index: 1990;
}

.case-slide {
  display: block;
}


.case-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;

  z-index: 2000;

  background-color: white;
  border-radius: 50%;
  padding: 0.8rem;

  box-shadow:
    0 8px 24px rgba(0,0,0,0.12);
	
	
}

.modal-backdrop.show {
  opacity: .85;
}

/* ============================
   PORTFOLIO FILTER TABS
============================ */

.portfolio-tabs {
  display: flex;
  gap: 1rem;

  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  appearance: none;
  border: 1px solid rgba(0,0,0,0.06);

  background: #f1ebe1;

  color: var(--black);

  padding:
    0.9rem
    1.5rem;

  border-radius: 999px;

  font-size: 0.82rem;
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 0.16em;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;

  cursor: pointer;
}

.tab-btn:hover {
  background: #efe7db;
  transform: translateY(-2px);
}

.tab-btn.active {
  background: var(--red);
  color: white;
  border-color: var(--red);

  box-shadow:
    0 8px 20px rgba(239,62,54,0.18);
}

/* MOBILE */

@media (max-width: 991px) {

  .case-slide {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .case-visual {
    order: 1;
  }

  .case-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .case-info {
    order: 2;

    padding:
      2rem
      1.5rem
      2.5rem;
  }

  .case-info h2 {
    font-size: 1.9rem;
  }

}

/* ============================
   WIDER MODAL
============================ */

.case-modal-dialog {
  width: auto;
  max-width: none;
  margin: 0 auto;
}

.gallery-modal {
  background: transparent;
  border: 0;
  box-shadow: none;
	overflow: visible;
}

.case-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.case-visual {
  background: transparent;
  padding: 0;
}

.case-visual img {
  display: block;

  max-width: 90vw;
  max-height: 90vh;

  width: auto;
  height: auto;

  border-radius: 16px;
}

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

.selected-tile {
  cursor: zoom-in;
}

.selected-tile img {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.selected-tile:hover img {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* ============================
   NEW SELECTED WORK GRID
============================ */

/* ============================
   PROJECT GRID
============================ */

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.project-card {
  background: #f1ebe1;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 18px;
  overflow: hidden;
  padding-bottom: 1.25rem;

  text-decoration: none;
  color: inherit;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-3px);
  background: #efe7db;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.project-image {
  overflow: hidden;
}

.project-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;

  transition: transform 0.4s ease;
}

.project-card:hover img {
  transform: scale(1.04);
}

.project-card h3 {
  font-size: 1.1rem;
  font-weight: 500;

  margin:
    1.25rem
    1.25rem
    0.15rem;
}

.project-card p {
  font-size: 0.85rem;

  text-transform: uppercase;
  letter-spacing: 0.08em;

  opacity: 0.55;

  margin:
    0
    1.25rem;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .project-grid {
    grid-template-columns: 1fr;
  }
}





.selected-tile:hover img {
  transform: scale(1.03);
}









/* ============================
   CURRENT WORK
============================ */

.locked-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.locked-project {
  background: #f1ebe1;
  border-radius: 18px;
  overflow: hidden;
  padding-bottom: 1.25rem;
}

.locked-image {
  position: relative;
  overflow: hidden;
}

.locked-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: blur(6px);
  transform: scale(1.05);
  opacity: 0.8;
}

.locked-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.locked-overlay span {
  background: rgba(255,255,255,0.9);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.locked-project h3 {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 1.25rem 1.25rem 0.6rem;
}

.locked-project p {
  font-size: 0.95rem;
  line-height: 1.8;

  margin: 0 1.25rem;
}

.confidential-note {
  margin-top: 2rem;

  font-size: 0.9rem;
}

@media (max-width: 991px) {
  .locked-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .locked-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================
   SKILLS
============================ */

#skills {
  background: transparent;
  color: var(--black);
  padding: 3rem 0 4rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ============================
   SKILL CARDS
============================ */

.skill-column {
  background: #f1ebe1;
  border-radius: 18px;
  padding: 2rem;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.skill-column:hover {
  transform: translateY(-3px);
  background: #efe7db;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.skill-icon {
  margin-bottom: 1.25rem;
  opacity: 0.7;
}

.skill-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.6;
}

.skill-column h5 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.skill-column p {
  font-size: 0.95rem;
  line-height: 1.8;
  
  margin: 0;
}

@media (max-width: 991px) {
  .skills-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
/* ============================
   CONTACT
   ============================ */

#contact {
  min-height: auto;
  display: flex;
  align-items: center;
  background: var(--bg);
  color: var(--black);
  padding: 4rem 0 6rem;
  flex-direction: column;
  justify-content: flex-start;
}

#contact .section-title {
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 500;
  text-align: left;
  color: var(--black);
}



#contact .lead {
  font-size: clamp(1.4em, 2vw, 2em);
  line-height: 1.5;
  text-align: left;
  color: var(--black);
  margin-top: 1rem;
}

/* Contact dots */
.contact-dots {
  display: flex;
  gap: 16px;
  margin-top: 2rem;
}

.contact-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--black);
  border-radius: 50%;
  color: var(--black);
  transition: all 0.3s ease;
}

.contact-dot svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.contact-dot:hover {
  background: var(--black);
  color: var(--red);
}

/* ============================
   MOBILE HAMBURGER MENU (SAFE)
   ============================ */

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.menu-toggle .bar {
  display: block;
  width: 28px;
  height: 2px;
  margin: 7px auto;
  background: #111;
  transition: transform 220ms ease, opacity 220ms ease;
}

/* Desktop nav */
@media (min-width: 769px) {
  .menu-toggle { display: none !important; }

  .site-nav {
    position: static;
    inset: auto;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: block;
  }

  .site-nav ul {
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
  }

  .site-nav a {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
  }

  .site-nav a:hover { color: var(--red); }
}

/* Mobile nav overlay */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    z-index: 1100;
    padding: 0;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 220ms ease, transform 220ms ease;
    z-index: 1050;
  }

  .site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0 2.25rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }

  .site-nav a {
    font-size: 2.25rem;
    line-height: 1.1;
    text-decoration: none;
    color: #111;
    font-weight: 300;
    letter-spacing: 0.02em;
    text-transform: none;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.nav-open .menu-toggle .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  body.nav-open .menu-toggle .bar:nth-child(2) {
    opacity: 0;
  }
  body.nav-open .menu-toggle .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  body.nav-open { overflow: hidden; }
}

/* ============================
   ULTRA-WIDE (tuned for 2880px)
   ============================ */

@media (min-width: 2400px) {
  .container {
    width: 100% !important;
    max-width: 2100px !important;
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .hero .col-md-9,
  .about .col-md-9,
  #contact .col-md-9 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  #work .row.g-5 {
    --bs-gutter-x: 5rem;
    --bs-gutter-y: 5rem;
  }
}

@media (min-width: 2400px) {

  .hero .eyebrow {
    font-size: 1.1rem;
  }

  .hero .hero-title {
    font-size: 4.25rem;
    max-width: 16ch;
  }

  .hero-intro {
    font-size: 1.4rem;
    max-width: 52ch;
  }

}

@media (min-width: 2000px) {

  .hero .eyebrow {
    font-size: 1rem;
  }

  .hero .hero-title {
    font-size: 4rem;
  }

  .hero-intro {
    font-size: 1.3rem;
    max-width: 50ch;
  }

}

@media (min-width: 2000px) {

  .hero-layout {
    grid-template-columns:
      minmax(500px, 40%)
      minmax(0, 60%);
  }

}

@media (min-width: 2000px) {

  .hero .hero-title {
    font-size: 4rem;
  }

  .hero-intro {
    font-size: 1.3rem;
  }

}

/* ============================
   SELECTED WORK – grouped rows
   ============================ */

.work-group{
  margin-bottom: 3.5rem;
}

.work-group-head{
  margin-bottom: 1.25rem;
  
}

.work-group-title{
  font-size: 1.75rem; /* aligns with your work-title */
  font-weight: 300;
  margin: 0 0 0.25rem 0;
}

.work-group-meta{
  margin: 2rem 0 2rem 0;

  font-size: clamp(1rem, 1.2vw + 0.8rem, 1.4rem); /* matches your .small rhythm */
  line-height: 1.5;
}

/* Titles moved above, so remove extra space under images */
.work-group .work-image{
  margin-bottom: 0;
}

/* ============================
   HERO TYPOGRAPHY (match live)
   Paste at END of CSS
   ============================ */

/* Remove layout-affecting padding from the global eyebrow class
   (prevents it from impacting "View Case Study" links, etc.) */
.eyebrow {
  padding-top: 0;
}

/* Re-apply the intended eyebrow spacing ONLY in the hero */
.hero .eyebrow {
  padding-top: 0;          /* keep clean like your live version */
  margin-top: 0;
  font-size: 0.9rem;       /* slightly tighter */
  letter-spacing: 0.16em;  /* a bit more refined */
  font-weight: 500;
  line-height: 1.2;
}

/* Hero headline: slightly larger + lighter + tighter leading */
.hero .hero-title {
  font-size: clamp(2.75rem, 3vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.hero-title {
  margin-bottom: 1rem;
}

.hero-intro {
  max-width: 52ch;
}

/* Optional: keep the red emphasis from feeling heavier than the headline */
.hero .hero-title .accent {
  font-weight: inherit;
}

.hero {
  margin-top: -100px;
}

/* ============================
   CONFIDENTIAL LINK
============================ */

.confidential-note {
  margin-top: 2.5rem;
}

.confidential-note p {
  margin-bottom: 0.75rem;
  
  font-size: 0.92rem;
}

.confidential-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;

  color: var(--black);
  text-decoration: none;



  transition:
    opacity 0.3s ease,
    color 0.3s ease,
    gap 0.3s ease;
}

.confidential-link::after {
  content: "→";
  transition: transform 0.3s ease;
}

.confidential-link:hover {
  opacity: 1;
  color: var(--red);
  gap: 0.75rem;
}

.confidential-link:hover::after {
  transform: translateX(2px);
}


