:root{
  --bg: #f4f4f4;
  --ink: #0f0f10;
  --muted: #2b2b2b;

  --cardW: 320px;
  --cardH: 520px;

  --headerH: 92px;

  --hero2bg: #f4f4f4;
  --hero3bg: #f4f4f4;
}

*{ box-sizing: border-box; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

/* ===== Header ===== */
.site-header{
  position: fixed;
  left: 0; right: 0; top: 0;
  z-index: 1000;
  padding: 14px 0;
}

.site-header__inner{
  width: min(1200px, 92vw);
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color: var(--ink);
}

.brand__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #111;
  display:inline-block;
}

.brand__name{
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 12px;
}

.nav{
  display:flex;
  gap: 18px;
  align-items:center;
}

.nav__link{
  text-decoration:none;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 12px;
  padding: 10px 10px;
  border-radius: 999px;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}
.nav__link:hover{
  background: rgba(0,0,0,0.06);
  color: var(--ink);
  transform: translateY(-1px);
}

.actions{
  display:flex;
  align-items:center;
  gap: 10px;
}

.cta{
  text-decoration:none;
  color:#fff;
  background:#111;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 12px;
  transition: transform 200ms ease;
}
.cta:hover{ transform: translateY(-1px); }

.burger{
  display:none;
  width: 44px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  cursor: pointer;
  padding: 10px 12px;
}

.burger span{
  display:block;
  height: 2px;
  background:#111;
  border-radius: 2px;
}
.burger span:first-child{ margin-bottom: 7px; }

/* ===== Overlay ===== */
.drawer-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
}

/* ===== Drawer ===== */
.drawer{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(86vw, 380px);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-left: 1px solid rgba(0,0,0,0.08);
  z-index: 1300;
  transform: translateX(110%);
  will-change: transform;
  display:flex;
  flex-direction: column;
  padding: 18px;
}

.drawer__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
}

.drawer__brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.drawer__close{
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.7);
  width: 42px;
  height: 40px;
  border-radius: 999px;
  cursor:pointer;
  font-size: 16px;
}

.drawer__nav{
  margin-top: 18px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.drawer__link{
  text-decoration:none;
  color:#111;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 12px;
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.06);
}

.drawer__bottom{
  margin-top:auto;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.drawer__cta{
  display:block;
  text-align:center;
  text-decoration:none;
  color:#fff;
  background:#111;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 12px;
}

.drawer__hint{
  margin: 12px 6px 0;
  color: rgba(0,0,0,0.55);
  font-size: 12px;
  line-height: 1.3;
}

/* ===== Stage ===== */
.stage{
  min-height: 100vh;
  padding-top: var(--headerH);
  position: relative;
}

/* ✅ FIX: slider layer fixed height (viewport) */
.slider-layer{
  position: relative;
  height: calc(100vh - var(--headerH));
  overflow: hidden;
}

/* ✅ @yield content আলাদা রাখলাম, overlap করবে না */
.page-content{
  position: relative;
  z-index: 0;
}

/* ===== Hero common ===== */
/* ✅ FIX: সব hero overlay absolute (hero1 সহ) */
.hero{
  position: absolute;
  inset: 0;
  height: 100%;
  min-height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero__inner{
  width: min(1200px, 92vw);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(16px, 4vw, 48px);
  padding: clamp(18px, 4vw, 40px) 0;
}

.hero__title{
  margin:0;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-transform: uppercase;
  font-size: clamp(34px, 5vw, 78px);
  transform: skewX(-10deg);
}
.hero__title span{ display:block; }
.hero__title--right{ text-align: right; }

.hero__center{
  display:flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.card{
  width: var(--cardW);
  height: var(--cardH);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.card__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.04);
  opacity: 1;
}

.card::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.05) 40%,
    rgba(0,0,0,0.00)
  );
  pointer-events:none;
}

.hero__mute{
  border: 0;
  background: transparent;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(0,0,0,0.35);
}

/* ===== shared social chip ===== */
.sico{
  width: 28px;
  height: 26px;
  border: 1px solid rgba(0,0,0,0.45);
  border-radius: 7px;
  display:grid;
  place-items:center;
  font-size: 10px;
  font-weight: 900;
  background: rgba(255,255,255,0.55);
}

/* ===========================
   HERO-2
=========================== */
.hero--two{
  opacity: 0;
  pointer-events: none;
}
.hero2{
  position: relative;
  width: 100%;
  height: calc(100vh - var(--headerH));
  background: var(--hero2bg);
  overflow: hidden;
}
.hero2__bg{ position:absolute; inset:0; pointer-events:none; }

.hero2__portfolio{
  position:absolute;
  left: clamp(18px, 6vw, 90px);
  top: clamp(36px, 9vh, 90px);
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: clamp(64px, 12vw, 170px);
  line-height: 0.9;
  opacity: 0.35;
  color: rgba(0,0,0,0.35);
}
.hero2__signature{
  position:absolute;
  left: clamp(18px, 6vw, 90px);
  top: clamp(140px, 26vh, 220px);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(44px, 10vw, 140px);
  opacity: 0.16;
  color: rgba(0,0,0,0.35);
  white-space: nowrap;
}
.hero2__smallTop{
  position:absolute;
  right: clamp(18px, 6vw, 90px);
  top: clamp(40px, 10vh, 100px);
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.7;
}
.hero2__nameFixed{
  position:absolute;
  left: clamp(18px, 6vw, 90px);
  bottom: clamp(22px, 6vh, 70px);
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.85;
}
.hero2__socialFixed{
  position:absolute;
  right: clamp(18px, 6vw, 90px);
  bottom: clamp(22px, 6vh, 70px);
  display:flex;
  gap: 10px;
}
.hero2__portraitWrap{
  position:absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: min(520px, 36vw);
  height: min(640px, 62vh);
  display:grid;
  place-items:center;
  z-index: 2;
}
.hero2__portrait{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display:block;
  filter: drop-shadow(0 26px 60px rgba(0,0,0,0.20));
}

/* ===========================
   HERO-3 (same style)
=========================== */
.hero--three{
  opacity: 0;
  pointer-events: none;
}
.hero3{
  position: relative;
  width: 100%;
  height: calc(100vh - var(--headerH));
  background: var(--hero3bg);
  overflow: hidden;
}
.hero3__bg{ position:absolute; inset:0; pointer-events:none; }

.hero3__portfolio{
  position:absolute;
  left: clamp(18px, 6vw, 90px);
  top: clamp(36px, 9vh, 90px);
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: clamp(64px, 12vw, 170px);
  line-height: 0.9;
  opacity: 0.35;
  color: rgba(0,0,0,0.35);
}
.hero3__signature{
  position:absolute;
  left: clamp(18px, 6vw, 90px);
  top: clamp(140px, 26vh, 220px);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(44px, 10vw, 140px);
  opacity: 0.16;
  color: rgba(0,0,0,0.35);
  white-space: nowrap;
}
.hero3__smallTop{
  position:absolute;
  right: clamp(18px, 6vw, 90px);
  top: clamp(40px, 10vh, 100px);
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.7;
}
.hero3__nameFixed{
  position:absolute;
  left: clamp(18px, 6vw, 90px);
  bottom: clamp(22px, 6vh, 70px);
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.85;
}
.hero3__socialFixed{
  position:absolute;
  right: clamp(18px, 6vw, 90px);
  bottom: clamp(22px, 6vh, 70px);
  display:flex;
  gap: 10px;
}
.hero3__portraitWrap{
  position:absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: min(520px, 36vw);
  height: min(640px, 62vh);
  display:grid;
  place-items:center;
  z-index: 2;
}
.hero3__portrait{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display:block;
  filter: drop-shadow(0 26px 60px rgba(0,0,0,0.20));
}

/* ===== Responsive ===== */
@media (max-width: 920px){
  .nav{ display:none; }
  .cta{ display:none; }
  .burger{ display:block; }
}

@media (max-width: 820px){
  :root{
    --cardW: min(320px, 86vw);
    --cardH: 470px;
    --headerH: 86px;
  }

  .hero__inner{
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }

  .hero__title{
    transform: none;
    letter-spacing: -0.02em;
    font-size: clamp(30px, 9vw, 56px);
  }
  .hero__title--right{ text-align: center; }

  .hero2__portfolio, .hero3__portfolio{
    left: 18px;
    top: 64px;
    font-size: clamp(54px, 16vw, 110px);
  }

  .hero2__signature, .hero3__signature{
    left: 18px;
    top: 150px;
    font-size: clamp(40px, 14vw, 90px);
  }

  .hero2__smallTop, .hero3__smallTop{
    right: 18px;
    top: 38px;
    font-size: 11px;
  }

  .hero2__nameFixed, .hero3__nameFixed{
    left: 18px;
    bottom: 22px;
  }

  .hero2__socialFixed, .hero3__socialFixed{
    right: 18px;
    bottom: 18px;
    gap: 8px;
  }

  .hero2__portraitWrap, .hero3__portraitWrap{
    width: min(360px, 78vw);
    height: min(520px, 58vh);
    top: 56%;
  }
}

.hero3__socialFixed{
  position:absolute;
  right: clamp(18px, 6vw, 90px);
  bottom: clamp(22px, 6vh, 70px);
  display:flex;
  gap: 10px;
  z-index: 5;
}

.sico{
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0,0,0,0.35);
  border-radius: 10px;
  display:grid;
  place-items:center;
  text-decoration: none;

  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);

  color: rgba(0,0,0,0.75);
  font-size: 14px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.sico:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.9);
  border-color: rgba(0,0,0,0.55);
  color: rgba(0,0,0,1);
}

.sico:active{
  transform: translateY(0px) scale(0.98);
}

/* mobile */
@media (max-width: 820px){
  .hero3__socialFixed{
    right: 18px;
    bottom: 18px;
    gap: 8px;
  }
  .sico{
    width: 32px;
    height: 32px;
    border-radius: 9px;
    font-size: 13px;
  }
}

/* 3Slider Design End */





/* =========================
   After Slider Section CSS
   ========================= */
.after-hero{
  min-height:100vh;
  background:#f3f3f1;
  padding:70px 8%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  overflow:hidden;
}

/* Topbar */
.after-hero__topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:18px;
}

.after-hero__logo{
  font-size:12px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#111;
  opacity:.9;
}

.after-hero__btn{
  padding:8px 16px;
  border:1px solid #999;
  border-radius:50px;
  font-size:12px;
  text-decoration:none;
  color:#111;
  transition:.3s;
}
.after-hero__btn:hover{
  background:#111;
  color:#fff;
  border-color:#111;
}

/* Title + Rule */
.after-hero__title{
  font-size:70px;
  font-weight:900;
  color:#111;
  margin-bottom:14px;
  line-height:1;
  letter-spacing:1px;
}

.after-hero__rule{
  width:100%;
  height:2px;
  background:#cfcfcf;
  margin-bottom:28px;
}

/* Grid */
.after-hero__grid{
  display:flex;
  gap:50px;
  align-items:flex-start;
}

/* Left */
.after-hero__left{
  flex:1.35;
}

/* Small text top */
.after-hero__smallText{
  display:flex;
  justify-content:flex-end;
  margin-bottom:22px;
}
.after-hero__smallText p{
  max-width:360px;
  font-size:13px;
  line-height:1.7;
  color:#666;
}

/* Lower area */
.after-hero__lower{
  display:grid;
  grid-template-columns:1fr .7fr 1fr;
  gap:25px;
  align-items:start;
}

/* About block */
.after-hero__about h4{
  font-size:12px;
  font-weight:900;
  margin-bottom:10px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:#111;
}
.after-hero__about p{
  font-size:13px;
  color:#666;
  line-height:1.7;
}

/* Accent center */
.after-hero__accent{
  text-align:center;
  padding-top:4px;
}
.after-hero__dot{
  width:62px;
  height:62px;
  background:#d86b63;
  border-radius:50%;
  margin:0 auto;
}
.after-hero__vline{
  width:2px;
  height:150px;
  background:#aaa;
  margin:0 auto;
}

/* Meta block */
.after-hero__meta{
  padding-top:8px;
}
.after-hero__barcode{
  width:110px;
  height:18px;
  background:repeating-linear-gradient(
    90deg,
    #111 0px,
    #111 2px,
    transparent 2px,
    transparent 4px
  );
  margin-bottom:12px;
  opacity:.85;
}
.after-hero__meta h5{
  font-size:12px;
  font-weight:900;
  margin-bottom:8px;
  letter-spacing:.8px;
  text-transform:uppercase;
  color:#111;
}
.after-hero__meta p{
  font-size:13px;
  color:#666;
  line-height:1.7;
}

/* Signature now under meta text */
.after-hero__sign{
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size:26px;
  color:#d86b63;
  margin-top:18px;
  text-align:left;
}

/* Right */
.after-hero__right{
  flex:1;
  display:flex;
  justify-content:flex-end;
}

.after-hero__photo{
  width:360px;
  aspect-ratio:4/3;
  overflow:hidden;
  box-shadow:0 0 0 1px #d0d0d0;
  background:#fff;
}

/* ✅ Image always center-center */
.after-hero__photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  filter:grayscale(100%) contrast(1.05);
}

/* =========================
   Animation (Scroll Reveal)
   ========================= */
.after-hero *{
  opacity:0;
  transform:translateY(22px);
  transition:0.85s ease;
}
.after-hero.show *{
  opacity:1;
  transform:translateY(0);
}
.after-hero.show .after-hero__title{ transition-delay:.08s; }
.after-hero.show .after-hero__rule{ transition-delay:.12s; }
.after-hero.show .after-hero__smallText{ transition-delay:.18s; }
.after-hero.show .after-hero__lower{ transition-delay:.25s; }
.after-hero.show .after-hero__photo{ transition-delay:.32s; }

/* Responsive */
@media(max-width:992px){
  .after-hero{
    padding:60px 6%;
  }
  .after-hero__grid{
    flex-direction:column;
  }
  .after-hero__right{
    justify-content:flex-start;
  }
  .after-hero__lower{
    grid-template-columns:1fr;
  }
  .after-hero__title{
    font-size:52px;
  }
  .after-hero__photo{
    width:100%;
  }
  .after-hero__sign{
    text-align:left;
    margin-top:16px;
  }
}

.after-hero__photo{
  width:360px;
  height:400px;   /* 👈 height বাড়ানো হয়েছে */
  overflow:hidden;
  box-shadow:0 0 0 1px #d0d0d0;
  background:#fff;
  margin-top:60px;
}

/* =========================
   AFTER HERO (Jane Doe)
   ========================= */
.after-hero{
  min-height:100vh;
  background:#f3f3f1;
  padding:70px 8%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  overflow:hidden;
}

/* Topbar */
.after-hero__topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:18px;
}

.after-hero__logo{
  font-size:12px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#111;
  opacity:.9;
}

.after-hero__btn{
  padding:8px 16px;
  border:1px solid #999;
  border-radius:50px;
  font-size:12px;
  text-decoration:none;
  color:#111;
  transition:.3s;
}
.after-hero__btn:hover{
  background:#111;
  color:#fff;
  border-color:#111;
}

/* Title + Rule */
.after-hero__title{
  font-size:70px;
  font-weight:900;
  color:#111;
  margin-bottom:14px;
  line-height:1;
  letter-spacing:1px;
}

.after-hero__rule{
  width:100%;
  height:2px;
  background:#cfcfcf;
  margin-bottom:28px;
}

/* Grid */
.after-hero__grid{
  display:flex;
  gap:50px;
  align-items:flex-start;
}

/* Left */
.after-hero__left{
  flex:1.35;
}

/* Small text top */
.after-hero__smallText{
  display:flex;
  justify-content:flex-end;
  margin-bottom:22px;
}
.after-hero__smallText p{
  max-width:360px;
  font-size:13px;
  line-height:1.7;
  color:#666;
}

/* Lower area */
.after-hero__lower{
  display:grid;
  grid-template-columns:1fr .7fr 1fr;
  gap:25px;
  align-items:start;
}

/* About block */
.after-hero__about h4{
  font-size:12px;
  font-weight:900;
  margin-bottom:10px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:#111;
}
.after-hero__about p{
  font-size:13px;
  color:#666;
  line-height:1.7;
}

/* Accent center */
.after-hero__accent{
  text-align:center;
  padding-top:4px;
}
.after-hero__dot{
  width:62px;
  height:62px;
  background:#d86b63;
  border-radius:50%;
  margin:0 auto;
}
.after-hero__vline{
  width:2px;
  height:150px;
  background:#aaa;
  margin:0 auto;
}

/* Meta block */
.after-hero__meta{
  padding-top:8px;
}
.after-hero__barcode{
  width:110px;
  height:18px;
  background:repeating-linear-gradient(
    90deg,
    #111 0px,
    #111 2px,
    transparent 2px,
    transparent 4px
  );
  margin-bottom:12px;
  opacity:.85;
}
.after-hero__meta h5{
  font-size:12px;
  font-weight:900;
  margin-bottom:8px;
  letter-spacing:.8px;
  text-transform:uppercase;
  color:#111;
}
.after-hero__meta p{
  font-size:13px;
  color:#666;
  line-height:1.7;
}

/* Signature under meta text */
.after-hero__sign{
  font-family:"Brush Script MT","Segoe Script",cursive;
  font-size:26px;
  color:#d86b63;
  margin-top:18px;
  text-align:left;
}

/* Right */
.after-hero__right{
  flex:1;
  display:flex;
  justify-content:flex-end;
}

.after-hero__photo{
  width:360px;
  height:480px;
  overflow:hidden;
  box-shadow:0 0 0 1px #d0d0d0;
  background:#fff;
  margin-top:60px;
}

/* Image always center-center */
.after-hero__photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  filter:grayscale(100%) contrast(1.05);
}

/* Animation base */
.after-hero *{
  opacity:0;
  transform:translateY(22px);
  transition:0.85s ease;
}
.after-hero.show *{
  opacity:1;
  transform:translateY(0);
}

/* Responsive */
@media(max-width:992px){
  .after-hero{ padding:60px 6%; }
  .after-hero__grid{ flex-direction:column; }
  .after-hero__right{ justify-content:flex-start; }
  .after-hero__lower{ grid-template-columns:1fr; }
  .after-hero__title{ font-size:52px; }
  .after-hero__photo{ width:100%; height:520px; margin-top:20px; }
}


/* =========================
   CONCEPT2 (No Conflict)
   ========================= */
.concept2{
  min-height:100vh;
  background:#f3f3f1;
  padding:70px 8%;
  display:flex;
  align-items:center;
  overflow:hidden;
}

/* full width editorial block */
.concept2__wrap{
  width:100%;
  display:grid;
  grid-template-columns:1fr 2px 1fr;
  background:#f7f7f5;
  border:1px solid #d7d7d7;
}

/* panels */
.concept2__panel{
  padding:26px 26px 34px;
  min-height:560px;
}

/* divider */
.concept2__divider{
  background:#cfcfcf;
}

/* top area */
.concept2__top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:22px;
}
.concept2__top--right{
  justify-content:flex-end;
}

.concept2__brand{
  font-size:12px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#111;
  opacity:.9;
}

.concept2__pill{
  font-size:11px;
  border:1px solid #bdbdbd;
  border-radius:999px;
  padding:6px 12px;
  color:#111;
}

/* left body */
.concept2__leftBody{
  padding-left:22px;
}

.concept2__imgBox{
  width:280px;
  height:330px;
  border:1px solid #d0d0d0;
  background:#fff;
  overflow:hidden;
  position:relative;
  margin-top:6px;
}

.concept2__imgBox img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  filter:grayscale(100%) contrast(1.05);
}

.concept2__scribble{
  position:absolute;
  left:-18px;
  top:96px;
  font-family:"Brush Script MT","Segoe Script",cursive;
  font-size:46px;
  color:#d86b63;
  transform:rotate(-12deg);
  opacity:.95;
  pointer-events:none;
}

.concept2__studio{
  margin-top:18px;
  max-width:340px;
}
.concept2__studio h5{
  font-size:11px;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:10px;
  color:#111;
}
.concept2__studio p{
  font-size:13px;
  line-height:1.7;
  color:#666;
}

.concept2__title{
  font-size:62px;
  font-weight:900;
  letter-spacing:1px;
  margin:12px 0 22px;
  color:#111;
}

.concept2__text h4{
  font-size:11px;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:12px;
  color:#111;
}
.concept2__text p{
  font-size:13px;
  line-height:1.75;
  color:#666;
  max-width:420px;
  margin-bottom:12px;
}

/* concept2 animation base */
.concept2 *{
  opacity:0;
  transform:translateY(22px);
  transition:0.85s ease;
}
.concept2.show *{
  opacity:1;
  transform:translateY(0);
}

/* responsive */
@media(max-width:992px){
  .concept2{ padding:60px 6%; }
  .concept2__wrap{ grid-template-columns:1fr; }
  .concept2__divider{ display:none; }
  .concept2__panel{ min-height:auto; }
  .concept2__leftBody{ padding-left:0; }
  .concept2__imgBox{ width:100%; max-width:360px; height:380px; }
  .concept2__title{ font-size:46px; }
}

@media(max-width: 768px){

  .after-hero__photo{
    width:100%;
    height:auto;           
    margin-top:20px;
  }

  .after-hero__photo img{
    width:100%;
    height:500;           
    object-fit:contain;    
    object-position:center center;
  }

}


/* =========================
   PORTFOLIO / WORK (pw)
   ========================= */

.pw{
  background:#f3f3f1;
  padding: 26px 8%;
  margin: 0;
}

/* ✅ frame + 2 columns always */
.pw__frame{
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border: 1px solid #d7d7d7;
  background: #f7f7f5;
  position: relative;

  display: grid;
  grid-template-columns: 1fr 1fr;  /* ✅ left/right same row */
  overflow: hidden;
}

/* ✅ middle divider */
.pw__frame::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  width:1px;
  background:#d0d0d0;
  pointer-events:none;
}

/* ✅ SAME height (short) */
.pw__panel{
  padding: 26px 26px 28px;
  height: 520px;                 /* ✅ shorter height */
  overflow: hidden;
  display:flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* top bar */
.pw__top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin: 0 0 14px;
}

.pw__top--right{
  justify-content:flex-end;
}

.pw__brand{
  font-size:12px;
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#111;
  opacity:.9;
}

.pw__pill{
  font-size:11px;
  border:1px solid #bdbdbd;
  border-radius:999px;
  padding:6px 12px;
  color:#111;
}

/* titles */
.pw__title{
  font-size:64px;
  font-weight:900;
  letter-spacing:1px;
  line-height: 1;
  margin: 0 0 18px;
  color:#111;
}

/* left grid */
.pw__leftGrid{
  display:grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: start;
  flex: 1;
}

/* meta */
.pw__sign{
  font-family:"Brush Script MT","Segoe Script",cursive;
  font-size:26px;
  color:#d86b63;
  margin: 0 0 10px;
}

.pw__barcode{
  width:110px;
  height:18px;
  background:repeating-linear-gradient(
    90deg,
    #111 0px,
    #111 2px,
    transparent 2px,
    transparent 4px
  );
  margin: 0 0 12px;
  opacity:.85;
}

.pw__studio h5{
  font-size:11px;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
  margin: 0 0 10px;
  color:#111;
}

.pw__studio p{
  font-size:13px;
  line-height:1.7;
  color:#666;
  margin:0;
}

/* collage */
.pw__collage{
  position:relative;
  height: 360px;          /* ✅ controlled collage height */
  width: 100%;
}

/* images */
.pw__img{
  position:absolute;
  background:#fff;
  border:1px solid #d0d0d0;
  overflow:hidden;
}

.pw__img img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter: grayscale(100%) contrast(1.05);
}

/* ✅ collage placement */
.pw__img--a{
  left:0;
  top:0;
  width:160px;
  height:210px;
}

.pw__img--b{
  left:180px;
  top:16px;
  width:150px;
  height:190px;
}

.pw__img--c{
  left:120px;
  top:210px;
  width:260px;
  height:140px;
}

.pw__scribble{
  position:absolute;
  left: 18px;
  bottom: -10px;
  font-family:"Brush Script MT","Segoe Script",cursive;
  font-size:46px;
  color:#d86b63;
  transform: rotate(-14deg);
  opacity:.95;
  pointer-events:none;
}

/* right text */
.pw__text{
  margin-top: 6px;
}

.pw__text h4{
  font-size:11px;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
  margin: 0 0 12px;
  color:#111;
}

.pw__text p{
  font-size:13px;
  line-height:1.75;
  color:#666;
  max-width:420px;
  margin: 0 0 12px;
}

/* ✅ responsive */
@media (max-width: 992px){
  .pw{
    padding: 22px 6%;
  }

  .pw__frame{
    grid-template-columns: 1fr; /* stack */
  }

  .pw__frame::after{
    display:none;
  }

  .pw__panel{
    height: auto;
  }

  .pw__title{
    font-size:46px;
  }

  .pw__leftGrid{
    grid-template-columns: 1fr;
  }

  .pw__collage{
    height: 480px;
    margin-top: 14px;
  }

  .pw__img--a{
    width:60%;
    height:260px;
  }

  .pw__img--b{
    left:52%;
    width:45%;
    height:200px;
  }

  .pw__img--c{
    left:18%;
    top:290px;
    width:78%;
    height:180px;
  }
}

@media (min-width: 993px){
  #portfolioWorkSection{
    margin-top: calc(-1 * var(--headerH));
  }
}


/* =========================
   LOOKBOOK (lb) - screenshot style
   ========================= */

.lb{
  background:#f3f3f1;
  padding: 26px 8%;
  margin: 0;
}

.lb__frame{
  width:100%;
  border:1px solid #d7d7d7;
  background:#f7f7f5;
  position:relative;
  display:grid;
  grid-template-columns: 1fr 1fr;
  overflow:hidden;
}

/* center divider */
.lb__frame::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  width:1px;
  background:#d0d0d0;
  pointer-events:none;
}

/* panels */
.lb__panel{
  padding:26px;
  height:520px;        /* ✅ same height */
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

/* top bar */
.lb__top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin:0 0 14px;
}

.lb__brand{
  font-size:12px;
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#111;
  opacity:.9;
}

.lb__pill{
  font-size:11px;
  border:1px solid #bdbdbd;
  border-radius:999px;
  padding:6px 12px;
  color:#111;
}

/* title */
.lb__title{
  font-size:64px;
  font-weight:900;
  letter-spacing:1px;
  line-height:1;
  margin:0 0 18px;
  color:#111;
}

/* body text */
.lb__body h4{
  font-size:11px;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
  margin:0 0 12px;
  color:#111;
}

.lb__cols{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}

.lb__cols p{
  font-size:13px;
  line-height:1.75;
  color:#666;
  margin:0;
}

/* thumbs */
.lb__thumbs{
  margin-top:auto;
  display:flex;
  gap:10px;
}

.lb__thumb{
  width:78px;
  height:52px;
  border:1px solid #d0d0d0;
  background:#fff;
  overflow:hidden;
}

.lb__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter:grayscale(100%) contrast(1.05);
}

/* RIGHT hero (2 images inside one box) */
.lb__hero{
  position:relative;
  width:100%;
  height:290px;
  border:1px solid #d0d0d0;   /* ✅ no top extra line */
  background:#fff;
  overflow:hidden;
  margin-top: 6px;
}

.lb__heroGrid{
  height:100%;
  display:grid;
  grid-template-columns: 1fr 1fr; /* ✅ 2 images side by side */
}

.lb__heroImg{
  overflow:hidden;
}

.lb__heroImg img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter:grayscale(100%) contrast(1.05);
}

/* scribble */
.lb__scribble{
  position:absolute;
  right:14px;
  bottom:8px;
  font-family:"Brush Script MT","Segoe Script",cursive;
  font-size:48px;
  color:#d86b63;
  transform:rotate(-12deg);
  opacity:.95;
  pointer-events:none;
}

/* meta under hero */
.lb__meta{
  margin-top:16px;
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.lb__barcode{
  width:110px;
  height:18px;
  margin-top:2px;
  background:repeating-linear-gradient(
    90deg,
    #111 0px,
    #111 2px,
    transparent 2px,
    transparent 4px
  );
  opacity:.85;
}

.lb__metaText h5{
  font-size:11px;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
  margin:0 0 10px;
  color:#111;
}

.lb__metaText p{
  font-size:13px;
  line-height:1.7;
  color:#666;
  margin:0;
  max-width:360px;
}

/* responsive */
@media (max-width: 992px){
  .lb{ padding:22px 6%; }

  .lb__frame{ grid-template-columns:1fr; }
  .lb__frame::after{ display:none; }
  .lb__panel{ height:auto; }

  .lb__title{ font-size:46px; }

  .lb__cols{ grid-template-columns:1fr; }

  .lb__hero{ height:360px; }
  .lb__heroGrid{ grid-template-columns:1fr; } /* stack images */
}


/* =========================
   Shared Frame for new sections
   ========================= */
.sv, .cs, .ts, .ct{
  background:#f3f3f1;
  padding: 26px 8%;
}

.sv__frame, .cs__frame, .ts__frame, .ct__frame{
  width:100%;
  border:1px solid #d7d7d7;
  background:#f7f7f5;
  display:grid;
  grid-template-columns: 1fr 1fr;
  position:relative;
  overflow:hidden;
}

.sv__frame::after,
.cs__frame::after,
.ts__frame::after,
.ct__frame::after{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  bottom:0;
  width:1px;
  background:#d0d0d0;
  pointer-events:none;
}

.sv__panel, .cs__panel, .ts__panel, .ct__panel{
  padding:26px;
  height:520px;
  display:flex;
  flex-direction:column;
  overflow:hidden;
}

.sv__top, .cs__top, .ts__top, .ct__top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:14px;
}

.sv__brand, .cs__brand, .ts__brand, .ct__brand{
  font-size:12px;
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#111;
  opacity:.9;
}

.sv__pill, .cs__pill, .ts__pill, .ct__pill{
  font-size:11px;
  border:1px solid #bdbdbd;
  border-radius:999px;
  padding:6px 12px;
  color:#111;
}

.sv__title, .cs__title, .ts__title, .ct__title{
  font-size:64px;
  font-weight:900;
  letter-spacing:1px;
  line-height:1;
  margin:0 0 16px;
  color:#111;
}

.sv__barcode, .cs__barcode, .ts__barcode, .ct__barcode{
  width:110px;
  height:18px;
  background:repeating-linear-gradient(90deg,#111 0px,#111 2px,transparent 2px,transparent 4px);
  opacity:.85;
}

.sv__sign, .cs__sign, .ts__sign, .ct__sign{
  font-family:"Brush Script MT","Segoe Script",cursive;
  font-size:26px;
  color:#d86b63;
}

.sv__foot, .cs__foot, .ts__foot, .ct__foot{
  margin-top:auto;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:14px;
}

/* ===== SERVICES ===== */
.sv__text h4{ font-size:11px; font-weight:900; letter-spacing:1px; text-transform:uppercase; margin:0 0 10px; }
.sv__text p{ margin:0; font-size:13px; line-height:1.75; color:#666; max-width:520px; }

.sv__list{ margin-top:18px; display:flex; flex-direction:column; gap:12px; }
.sv__item{ display:flex; gap:14px; padding:14px; border:1px solid #d0d0d0; background:#fff; }
.sv__num{ font-weight:900; color:#111; opacity:.75; min-width:42px; }
.sv__meta h5{ margin:0 0 6px; font-size:12px; font-weight:900; text-transform:uppercase; letter-spacing:1px; }
.sv__meta p{ margin:0; font-size:13px; color:#666; line-height:1.6; }

.sv__hero{
  position:relative;
  width:100%;
  height:320px;
  border:1px solid #d0d0d0;
  background:#fff;
  overflow:hidden;
  margin-top:6px;
}
.sv__hero img{ width:100%; height:100%; object-fit:cover; filter:grayscale(100%) contrast(1.05); }
.sv__scribble{
  position:absolute; right:14px; bottom:8px;
  font-family:"Brush Script MT","Segoe Script",cursive;
  font-size:48px; color:#d86b63; transform:rotate(-10deg);
}
.sv__info{ margin-top:14px; }
.sv__info h5{ margin:0 0 8px; font-size:11px; font-weight:900; letter-spacing:1px; text-transform:uppercase; }
.sv__info p{ margin:0; font-size:13px; color:#666; line-height:1.7; max-width:420px; }

/* ===== CASE STUDY ===== */
.cs__cols{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.cs__col h4{ margin:0 0 10px; font-size:11px; font-weight:900; letter-spacing:1px; text-transform:uppercase; }
.cs__col p{ margin:0; font-size:13px; color:#666; line-height:1.75; }
.cs__stats{ margin-top:18px; display:flex; gap:12px; }
.cs__stat{ flex:1; border:1px solid #d0d0d0; background:#fff; padding:14px; }
.cs__big{ font-size:22px; font-weight:900; color:#111; margin-bottom:6px; }
.cs__small{ font-size:12px; color:#666; }

.cs__images{ display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:6px; }
.cs__img{ border:1px solid #d0d0d0; background:#fff; overflow:hidden; height:240px; }
.cs__img img{ width:100%; height:100%; object-fit:cover; filter:grayscale(100%) contrast(1.05); }
.cs__note{ margin-top:14px; }
.cs__note h5{ margin:0 0 8px; font-size:11px; font-weight:900; letter-spacing:1px; text-transform:uppercase; }
.cs__note p{ margin:0; font-size:13px; color:#666; line-height:1.7; max-width:420px; }

/* ===== TESTIMONIAL ===== */
.ts__quote{ border:1px solid #d0d0d0; background:#fff; padding:16px; margin-top:6px; }
.ts__quote p{ margin:0; font-size:14px; color:#444; line-height:1.75; }
.ts__client{ margin-top:12px; }
.ts__clientName{ font-size:12px; font-weight:900; letter-spacing:1px; text-transform:uppercase; }
.ts__clientRole{ font-size:13px; color:#666; margin-top:4px; }

.ts__mini{ margin-top:16px; display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.ts__miniCard{ border:1px solid #d0d0d0; background:#fff; padding:14px; }
.ts__miniCard h5{ margin:0 0 8px; font-size:11px; font-weight:900; letter-spacing:1px; text-transform:uppercase; }
.ts__miniCard p{ margin:0; font-size:13px; color:#666; line-height:1.7; }

.ts__hero{
  position:relative;
  width:100%;
  height:420px;
  border:1px solid #d0d0d0;
  background:#fff;
  overflow:hidden;
  margin-top:6px;
}
.ts__hero img{ width:100%; height:100%; object-fit:cover; filter:grayscale(100%) contrast(1.05); }
.ts__scribble{
  position:absolute; right:14px; bottom:8px;
  font-family:"Brush Script MT","Segoe Script",cursive;
  font-size:48px; color:#d86b63; transform:rotate(-10deg);
}

/* ===== CONTACT ===== */
.ct__text h4{ margin:0 0 10px; font-size:11px; font-weight:900; letter-spacing:1px; text-transform:uppercase; }
.ct__text p{ margin:0; font-size:13px; color:#666; line-height:1.75; max-width:520px; }

.ct__cards{ margin-top:16px; display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.ct__card{ border:1px solid #d0d0d0; background:#fff; padding:14px; }
.ct__card h5{ margin:0 0 8px; font-size:11px; font-weight:900; letter-spacing:1px; text-transform:uppercase; }
.ct__card p{ margin:0; font-size:13px; color:#666; }

.ct__hero{
  position:relative;
  width:100%;
  height:420px;
  border:1px solid #d0d0d0;
  background:#fff;
  overflow:hidden;
  margin-top:6px;
}
.ct__hero img{ width:100%; height:100%; object-fit:cover; filter:grayscale(100%) contrast(1.05); }
.ct__scribble{
  position:absolute; right:14px; bottom:8px;
  font-family:"Brush Script MT","Segoe Script",cursive;
  font-size:48px; color:#d86b63; transform:rotate(-10deg);
}

.ct__btn{
  margin-top:16px;
  display:inline-block;
  text-decoration:none;
  text-align:center;
  color:#fff;
  background:#111;
  padding:12px 16px;
  border-radius:999px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:0.10em;
  font-size:12px;
  width:max-content;
}
.ct__btn:hover{ transform: translateY(-1px); }

/* responsive */
@media(max-width:992px){
  .sv, .cs, .ts, .ct{ padding:22px 6%; }
  .sv__frame, .cs__frame, .ts__frame, .ct__frame{ grid-template-columns:1fr; }
  .sv__frame::after, .cs__frame::after, .ts__frame::after, .ct__frame::after{ display:none; }
  .sv__panel, .cs__panel, .ts__panel, .ct__panel{ height:auto; }
  .sv__title, .cs__title, .ts__title, .ct__title{ font-size:46px; }
  .cs__cols{ grid-template-columns:1fr; }
  .cs__images{ grid-template-columns:1fr; }
  .ts__mini{ grid-template-columns:1fr; }
  .ct__cards{ grid-template-columns:1fr; }
}

/* Img Color Controller */
img{
  filter: none !important;
}



/* =========================
   MODERN FOOTER (Theme Match)
   ========================= */

.footer{
  background: var(--bg);   /* same as body */
  padding: 60px 8% 30px;
  border-top: 1px solid #d7d7d7;
}

.footer__frame{
  max-width: 1200px;
  margin: 0 auto;
}

/* ================= TOP ================= */

.footer__top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:60px;
  padding-bottom:40px;
  border-bottom:1px solid #d0d0d0;
}

.footer__brand{
  max-width:420px;
}

.footer__logo{
  font-size:14px;
  font-weight:900;
  letter-spacing:3px;
  text-transform:uppercase;
  margin-bottom:16px;
  color: var(--ink);
}

.footer__brand p{
  font-size:14px;
  line-height:1.8;
  color:#666;
  margin:0;
}

/* ================= LINKS ================= */

.footer__links{
  display:flex;
  gap:60px;
}

.footer__col{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footer__col h5{
  font-size:12px;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:10px;
  color: var(--ink);
}

.footer__col a{
  text-decoration:none;
  font-size:13px;
  color:#666;
  transition: all 0.25s ease;
}

.footer__col a:hover{
  color: var(--ink);
  transform: translateX(4px);
}

/* ================= BOTTOM ================= */

.footer__bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:24px;
  font-size:13px;
  color:#777;
}

.footer__copyright{
  color:#777;
}

/* social icons */
.footer__social{
  display:flex;
  gap:12px;
}

.footer__icon{
  width:34px;
  height:34px;
  border:1px solid #cfcfcf;
  display:grid;
  place-items:center;
  border-radius:8px;
  font-size:12px;
  font-weight:800;
  text-decoration:none;
  color:#444;
  background:#fff;
  transition: all 0.25s ease;
}

.footer__icon:hover{
  background:#111;
  color:#fff;
  border-color:#111;
  transform: translateY(-3px);
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

  .footer{
    padding:50px 6% 24px;
  }

  .footer__top{
    flex-direction:column;
    gap:40px;
  }

  .footer__links{
    gap:40px;
  }

  .footer__bottom{
    flex-direction:column;
    gap:14px;
    text-align:center;
  }

}


.footer__icon:hover i{
  color:#fff;
}

.footer__icon:hover{
  transform: translateY(-3px);
}

/* Brand colors */
.footer__icon:nth-child(1):hover{ background:#0077b5; } 
.footer__icon:nth-child(2):hover{ background:#e1306c; } 
.footer__icon:nth-child(3):hover{ background:#1877f2; } 




