/* ============================================
   BOLDBLACK DESIGNS — PORTFOLIO PAGE
   Clean white + real images + browser mockups
   ============================================ */

.light-page { background: #ffffff; color: #0a0a0a; }

/* ---- Buttons ---- */
.port-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: #0a0a0a;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  border: 2px solid #0a0a0a;
  text-decoration: none;
  transition: all 0.25s var(--ease);
  cursor: pointer;
}
.port-btn-primary:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.port-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  border: 2px solid rgba(255,255,255,0.4);
  text-decoration: none;
  transition: all 0.25s var(--ease);
  backdrop-filter: blur(6px);
}
.port-btn-outline:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.port-btn-dark-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: transparent;
  color: #0a0a0a;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  border: 2px solid #0a0a0a;
  text-decoration: none;
  transition: all 0.25s var(--ease);
}
.port-btn-dark-outline:hover {
  background: #0a0a0a;
  color: #fff;
}

.port-btn-sm {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--accent-2);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.25s var(--ease);
  border: 2px solid var(--accent-2);
}
.port-btn-sm:hover {
  background: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

/* Eyebrow */
.port-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  display: block;
  margin-bottom: 12px;
}

/* Section header */
.port-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.port-section-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  color: #0a0a0a;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.port-section-sub {
  font-size: 16px;
  color: #666;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   HERO
   ============================================ */
.port-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.port-hero-bg {
  position: absolute;
  inset: 0;
}
.port-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.port-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.45) 0%,
    rgba(10,10,10,0.6) 50%,
    rgba(10,10,10,0.9) 100%
  );
}
.port-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 48px 0;
}
.port-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.port-breadcrumb a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.port-breadcrumb a:hover { color: var(--accent-2); }
.port-breadcrumb svg { opacity: 0.4; flex-shrink: 0; }

.port-hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
  max-width: 680px;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}
.port-title-gold { color: var(--accent-2); }

.port-hero-sub {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255,255,255,0.68);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 300;
  animation: fadeUp 0.8s var(--ease) 0.35s both;
}

.port-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease) 0.5s both;
}

/* ============================================
   FEATURED PROJECT — BROWSER MOCKUP
   ============================================ */
.port-featured {
  background: #f7f7f5;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  padding: 88px 0;
}
.port-featured-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Browser chrome */
.port-browser {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
  overflow: hidden;
  margin-bottom: 32px;
}
.port-browser-bar {
  background: #f0f0ee;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #e0e0e0;
}
.port-browser-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.bd {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.bd.red    { background: #ff5f57; }
.bd.yellow { background: #febc2e; }
.bd.green  { background: #28c840; }

.port-browser-url {
  flex: 1;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 5px 12px;
  font-size: 12px;
  color: #666;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 6px;
}
.port-browser-url svg { stroke: #28c840; flex-shrink: 0; }
.port-browser-menu {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
}
.port-browser-menu span {
  display: block;
  width: 14px; height: 1.5px;
  background: #aaa;
}

.port-browser-screen {
  position: relative;
  overflow: hidden;
}
.port-browser-screen img {
  width: 100%;
  display: block;
  max-height: 480px;
  object-fit: cover;
  object-position: top;
  filter: grayscale(8%);
  transition: transform 0.5s var(--ease), filter 0.4s;
}
.port-browser:hover .port-browser-screen img {
  transform: scale(1.02);
  filter: grayscale(0%);
}
.port-browser-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s;
}
.port-browser:hover .port-browser-overlay { opacity: 1; }

/* Project meta strip */
.port-featured-meta {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e8e8e8;
  overflow: hidden;
}
.port-meta-item {
  flex: 1;
  padding: 20px 24px;
  transition: background 0.2s;
}
.port-meta-item:hover { background: #f7f7f5; }
.port-meta-label {
  display: block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 5px;
}
.port-meta-val {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0a;
}
.port-meta-divider {
  width: 1px;
  height: 48px;
  background: #e8e8e8;
  flex-shrink: 0;
}

/* ============================================
   FILTER + GRID
   ============================================ */
.port-gallery {
  background: #fff;
  padding: 80px 0;
}
.port-gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Filter tabs */
.port-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 52px;
}
.port-filter {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 9px 22px;
  border: 1.5px solid #e0e0e0;
  color: #666;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.port-filter:hover {
  border-color: #0a0a0a;
  color: #0a0a0a;
}
.port-filter.active {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
}

/* Project grid */
.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.port-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.4s, transform 0.35s var(--ease), opacity 0.4s, scale 0.3s;
}
.port-card:hover {
  border-color: #0a0a0a;
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  transform: translateY(-6px);
}

/* Card image */
.port-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.port-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(10%);
  transition: transform 0.5s var(--ease), filter 0.4s;
}
.port-card:hover .port-card-img img {
  transform: scale(1.07);
  filter: grayscale(0%);
}
.port-card-hover {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.port-card:hover .port-card-hover { opacity: 1; }

/* Card info */
.port-card-info {
  padding: 20px 22px;
  border-top: 1px solid #e8e8e8;
}
.port-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.port-card-top h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: #0a0a0a;
  line-height: 1.2;
}
.port-card-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: rgba(0,0,0,0.08);
  flex-shrink: 0;
  line-height: 1;
}
.port-card-info > p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 14px;
}
.port-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.port-card-tags span {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid #e0e0e0;
  color: #666;
  transition: all 0.2s;
}
.port-card:hover .port-card-tags span {
  border-color: var(--accent-2);
  color: var(--accent-2);
}

/* ============================================
   "YOUR SITE NEXT" STRIP
   ============================================ */
.port-yours-strip {
  background: #f7f7f5;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  padding: 80px 0;
}
.port-yours-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Mini browser */
.port-mini-browser {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  overflow: hidden;
  max-width: 440px;
  margin: 0 auto;
}
.port-mini-bar {
  background: #f0f0ee;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #e0e0e0;
}
.port-mini-url {
  flex: 1;
  font-size: 11px;
  color: #888;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  padding: 3px 10px;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}
.port-mini-screen {
  padding: 16px;
}
.mini-nav-line {
  height: 10px;
  background: #f0f0ee;
  border-radius: 2px;
  margin-bottom: 14px;
}
.mini-hero-block {
  background: #0a0a0a;
  padding: 20px 16px;
  border-radius: 3px;
  margin-bottom: 12px;
}
.mini-line {
  height: 8px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  margin-bottom: 8px;
}
.mini-line.w70 { width: 70%; }
.mini-line.w50 { width: 50%; }
.mini-btn {
  width: 80px; height: 22px;
  background: var(--accent-2);
  border-radius: 2px;
  margin-top: 12px;
}
.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mini-card {
  height: 44px;
  background: #f0f0ee;
  border-radius: 2px;
  border: 1px solid #e0e0e0;
}

/* Text side */
.port-yours-text h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 40px);
  color: #0a0a0a;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.port-yours-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 28px;
}
.port-yours-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================
   CTA BANNER
   ============================================ */
.port-cta-section {
  position: relative;
  padding: 120px 48px;
  overflow: hidden;
  text-align: center;
}
.port-cta-bg {
  position: absolute;
  inset: 0;
}
.port-cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.port-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.78) 50%,
    rgba(10,10,10,0.92) 100%
  );
}
.port-cta-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.port-cta-content h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 50px);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.port-cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 36px;
}
.port-cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .port-grid { grid-template-columns: repeat(2, 1fr); }
  .port-yours-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 32px; }
  .port-featured-inner { padding: 0 32px; }
  .port-gallery-inner { padding: 0 32px; }
  .port-featured-meta { flex-wrap: wrap; }
  .port-meta-item { min-width: 45%; border-bottom: 1px solid #e8e8e8; }
  .port-meta-divider { display: none; }
}

@media (max-width: 768px) {
  .port-hero { min-height: 480px; padding-bottom: 56px; }
  .port-hero-content { padding: 40px 24px 0; }
  .port-hero-btns { flex-direction: column; }
  .port-grid { grid-template-columns: 1fr; gap: 16px; }
  .port-featured { padding: 56px 0; }
  .port-gallery { padding: 56px 0; }
  .port-yours-strip { padding: 56px 0; }
  .port-cta-section { padding: 80px 24px; }
  .port-cta-btns { flex-direction: column; align-items: center; }
  .port-yours-btns { flex-direction: column; }
  .port-filters { gap: 6px; }
  .port-filter { padding: 8px 16px; font-size: 12px; }
}

@media (max-width: 480px) {
  .port-hero-title { font-size: 36px; }
  .port-gallery-inner { padding: 0 20px; }
}